12345678910111213141516171819202122232425262728293031 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
- __name: "info",
- setup(__props) {
- var _a;
- (_a = common_vendor.getCurrentInstance()) == null ? void 0 : _a.appContext.config.globalProperties.$api;
- const config = common_vendor.ref({ logoUrl: "" });
- const id = common_vendor.ref("");
- common_vendor.onLoad(async (options) => {
- id.value = options && options.id;
- common_vendor.index.setNavigationBarTitle({
- title: options && options.name || "活动详情"
- });
- await searchConfig();
- await search();
- });
- const searchConfig = async () => {
- config.value = common_vendor.index.getStorageSync("config");
- };
- const search = async () => {
- if (id.value)
- ;
- };
- return (_ctx, _cache) => {
- return {};
- };
- }
- });
- const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-24c37ea1"], ["__file", "D:/project/足球比赛/match_applet/pagesHome/activity/info.vue"]]);
- wx.createPage(MiniProgramPage);
|