12345678910111213141516171819202122232425262728293031 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
- __name: "index",
- setup(__props) {
- var _a, _b;
- (_a = common_vendor.getCurrentInstance()) == null ? void 0 : _a.appContext.config.globalProperties.$api;
- (_b = common_vendor.getCurrentInstance()) == null ? void 0 : _b.appContext.config.globalProperties.$config;
- const config = common_vendor.ref({ logo: [], file: [] });
- common_vendor.ref([]);
- common_vendor.ref(0);
- common_vendor.ref([]);
- common_vendor.onShow(async () => {
- await searchConfig();
- await searchOther();
- await search();
- });
- const searchConfig = async () => {
- config.value = common_vendor.index.getStorageSync("config");
- };
- const searchOther = async () => {
- };
- const search = async () => {
- };
- return (_ctx, _cache) => {
- return {};
- };
- }
- });
- const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-0a708db0"], ["__file", "D:/project/赋强公证/notarization_applet/pagesHome/path/index.vue"]]);
- wx.createPage(MiniProgramPage);
|