123456789101112131415161718192021222324252627282930313233 |
- "use strict";
- const common_vendor = require("./common/vendor.js");
- const wx_min = common_vendor.index.getAccountInfoSync();
- const system = common_vendor.index.getSystemInfoSync();
- let wx_projectkey = "newCourtApp";
- if (system.uniPlatform == "mp-weixin") {
- wx_min.miniProgram.envVersion;
- }
- const config = {
- serverFile: "http://192.168.1.197",
- serverUrl: "http://localhost:9990",
- wx_projectkey,
- wx_miniProgram: wx_min.miniProgram,
- system,
- share: {},
- menuList: [
- {
- icon: "account",
- title: "基本信息",
- route: "pagesMy/basic/index"
- },
- {
- icon: "list-dot",
- title: "申办记录",
- route: "pagesMy/record/index"
- },
- {
- icon: "grid",
- title: "退出登录"
- }
- ]
- };
- exports.config = config;
|