63 lines
2.3 KiB
JavaScript
63 lines
2.3 KiB
JavaScript
"use strict";
|
|
const common_vendor = require("../../common/vendor.js");
|
|
const api_apis = require("../../api/apis.js");
|
|
if (!Array) {
|
|
const _easycom_uni_tag2 = common_vendor.resolveComponent("uni-tag");
|
|
const _easycom_uni_dateformat2 = common_vendor.resolveComponent("uni-dateformat");
|
|
const _easycom_mp_html2 = common_vendor.resolveComponent("mp-html");
|
|
(_easycom_uni_tag2 + _easycom_uni_dateformat2 + _easycom_mp_html2)();
|
|
}
|
|
const _easycom_uni_tag = () => "../../uni_modules/uni-tag/components/uni-tag/uni-tag.js";
|
|
const _easycom_uni_dateformat = () => "../../uni_modules/uni-dateformat/components/uni-dateformat/uni-dateformat.js";
|
|
const _easycom_mp_html = () => "../../uni_modules/mp-html/components/mp-html/mp-html.js";
|
|
if (!Math) {
|
|
(_easycom_uni_tag + _easycom_uni_dateformat + _easycom_mp_html)();
|
|
}
|
|
const _sfc_main = {
|
|
__name: "detail",
|
|
setup(__props) {
|
|
const detail = common_vendor.ref({});
|
|
const noticeId = common_vendor.ref("");
|
|
const noticeName = common_vendor.ref("");
|
|
common_vendor.onLoad((e) => {
|
|
common_vendor.index.__f__("log", "at pages/notice/detail.vue:46", e);
|
|
noticeId.value = e.id;
|
|
noticeName.value = e.name;
|
|
common_vendor.index.setNavigationBarTitle({
|
|
title: noticeName.value
|
|
});
|
|
getNoticeDetail();
|
|
});
|
|
const getNoticeDetail = async () => {
|
|
let res = await api_apis.apiNoticeDetail({ id: noticeId.value });
|
|
detail.value = res.data;
|
|
common_vendor.index.__f__("log", "at pages/notice/detail.vue:59", res);
|
|
};
|
|
return (_ctx, _cache) => {
|
|
return common_vendor.e({
|
|
a: detail.value.select
|
|
}, detail.value.select ? {
|
|
b: common_vendor.p({
|
|
text: "置顶",
|
|
inverted: true,
|
|
type: "error"
|
|
})
|
|
} : {}, {
|
|
c: common_vendor.t(detail.value.title),
|
|
d: common_vendor.t(detail.value.author),
|
|
e: common_vendor.p({
|
|
date: detail.value.publish_date,
|
|
format: "yyyy-MM-dd hh:mm:ss"
|
|
}),
|
|
f: common_vendor.p({
|
|
content: detail.value.content
|
|
}),
|
|
g: common_vendor.t(detail.value.view_count)
|
|
});
|
|
};
|
|
}
|
|
};
|
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-0f737f11"]]);
|
|
wx.createPage(MiniProgramPage);
|
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/notice/detail.js.map
|