jiangchengfeiyi-xiaochengxu/unpackage/dist/dev/mp-weixin/pages/mine/main/main.js

45 lines
1.5 KiB
JavaScript
Raw Normal View History

"use strict";
const common_vendor = require("../../../common/vendor.js");
2024-10-18 14:49:08 +00:00
const _sfc_main = {
__name: "main",
setup(__props) {
2025-01-02 03:18:59 +00:00
common_vendor.onMounted(() => {
getFonts();
});
2024-12-02 03:01:34 +00:00
const goToText = () => {
common_vendor.index.navigateTo({
url: "/pages/mine/Contact/Contact"
});
};
2025-01-02 03:18:59 +00:00
const goto = (tab) => {
2024-12-02 03:01:34 +00:00
common_vendor.index.navigateTo({
2025-01-02 03:18:59 +00:00
url: "/pages/mine/mineorders/mineorders?zt=" + JSON.stringify(tab)
});
};
const getFonts = () => {
common_vendor.index.loadFontFace({
family: "FangZhengFonts",
source: `url("https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/FangZhengFonts.TTF")`,
success: (res) => {
console.log("success", res);
},
fail: (err) => {
console.log("err", err);
}
2024-12-02 03:01:34 +00:00
});
};
2024-10-18 14:49:08 +00:00
return (_ctx, _cache) => {
return {
2025-01-02 03:18:59 +00:00
a: common_vendor.o(($event) => goto("全部")),
b: common_vendor.o(($event) => goto("待支付")),
c: common_vendor.o(($event) => goto("待发货")),
d: common_vendor.o(($event) => goto("已发货")),
e: common_vendor.o(($event) => goto("已退款")),
f: common_vendor.o(goToText)
};
2024-10-18 14:49:08 +00:00
};
}
};
2025-01-02 03:18:59 +00:00
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-8172b2ba"], ["__file", "D:/微信小程序/课设整合/匠承非遗小程序端/jiangchengfeiyi-xiaochengxu/pages/mine/main/main.vue"]]);
wx.createPage(MiniProgramPage);