acdr-ui/dist/dev/mp-weixin/sheep/components/s-richtext-block/s-richtext-block.js

72 lines
1.9 KiB
JavaScript
Raw Normal View History

2024-09-19 07:20:14 +08:00
"use strict";
var __async = (__this, __arguments, generator) => {
return new Promise((resolve, reject) => {
var fulfilled = (value) => {
try {
step(generator.next(value));
} catch (e) {
reject(e);
}
};
var rejected = (value) => {
try {
step(generator.throw(value));
} catch (e) {
reject(e);
}
};
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
step((generator = generator.apply(__this, __arguments)).next());
});
};
const common_vendor = require("../../../common/vendor.js");
const sheep_api_promotion_article = require("../../api/promotion/article.js");
if (!Array) {
const _easycom_mp_html2 = common_vendor.resolveComponent("mp-html");
_easycom_mp_html2();
}
const _easycom_mp_html = () => "../../../uni_modules/mp-html/components/mp-html/mp-html.js";
if (!Math) {
_easycom_mp_html();
}
const _sfc_main = {
__name: "s-richtext-block",
props: {
data: {
type: Object,
default: {}
},
styles: {
type: Object,
default() {
}
}
},
setup(__props) {
const props = __props;
const state = common_vendor.reactive({
content: ""
});
common_vendor.onMounted(() => __async(this, null, function* () {
const { data } = yield sheep_api_promotion_article.ArticleApi.getArticle(props.data.id);
state.content = data.content;
}));
return (_ctx, _cache) => {
return {
a: common_vendor.p({
content: state.content
}),
b: common_vendor.s({
marginLeft: __props.styles.marginLeft + "px",
marginRight: __props.styles.marginRight + "px",
marginBottom: __props.styles.marginBottom + "px",
marginTop: __props.styles.marginTop + "px",
padding: __props.styles.padding + "px"
})
};
};
}
};
wx.createComponent(_sfc_main);
//# sourceMappingURL=s-richtext-block.js.map