You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

69 lines
1.7 KiB

"use strict";
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const common_vendor = require("./common/vendor.js");
const config_host = require("./config/host.js");
if (!Math) {
"./pages/Index/index.js";
"./pages/UserDetail/index.js";
"./pages/ChatDetail/index.js";
"./pages/UserCoupons/index.js";
"./pages/Addr/index.js";
"./pages/AddrDetail/index.js";
"./pages/Card/index.js";
"./pages/CardDetail/index.js";
"./pages/Pet/index.js";
"./pages/Draw/index.js";
"./pages/PetDetail/index.js";
"./pages/FeedLog/index.js";
"./pages/OrderPage/index.js";
"./pages/Login/index.js";
}
const _sfc_main = {
onLaunch: function() {
console.log("App Launch");
},
onShow: function() {
},
onHide: function() {
console.log("App Hide");
},
mounted() {
}
};
const App = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "D:/phpstudy_pro/WEB/pet_uni/App.vue"]]);
const store = common_vendor.createStore({
state() {
return {
footCheck: "home",
title: config_host.title,
userInfo: {},
userExtends: {}
};
},
getters: {},
mutations: {
footCheck(state, check) {
state.footCheck = check;
},
title(state, title) {
state.title = title;
},
userInfo(state, userInfo) {
state.userInfo = userInfo;
},
userExtends(state, userExtends) {
state.userExtends = userExtends;
}
}
});
function createApp() {
const app = common_vendor.createSSRApp(App);
app.use(common_vendor.uviewPlus);
app.use(store);
common_vendor.index.$u.config.unit = "rpx";
return {
app
};
}
createApp().app.mount("#app");
exports.createApp = createApp;