| 12345678910111213141516171819202122232425262728293031323334353637 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const _sfc_main = {
- __name: "msgdetail",
- setup(__props) {
- const msgData = common_vendor.ref({
- title: "",
- position: "",
- company: "",
- status: "",
- desc: ""
- });
- common_vendor.onLoad((options) => {
- if (options.data) {
- try {
- const decoded = decodeURIComponent(options.data);
- msgData.value = JSON.parse(decoded);
- } catch (e) {
- common_vendor.index.__f__("error", "at pages/message/msgdetail.vue:57", "Parse msg data error", e);
- }
- }
- });
- return (_ctx, _cache) => {
- return {
- a: common_vendor.t(msgData.value.title || "消息详情"),
- b: common_vendor.t(msgData.value.position || "-"),
- c: common_vendor.t(msgData.value.company || "-"),
- d: common_vendor.t(msgData.value.status || "-"),
- e: common_vendor.t(msgData.value.time || "-"),
- f: common_vendor.t(msgData.value.desc || "暂无说明")
- };
- };
- }
- };
- const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-b13fcb8d"]]);
- wx.createPage(MiniProgramPage);
- //# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/message/msgdetail.js.map
|