export default defineAppConfig({ pages: [ "home_pages/index", //中转页 "login_pages/index/index", "login_pages/verification/index", "login_pages/terms/index", "game_pages/list/index", "game_pages/search/index", // 搜索页 "game_pages/searchResult/index", // 搜索结果页面 "game_pages/detail/index", // 球局详情页 ], subPackages: [ { root: 'publish_pages', pages: [ "publishBall/index", ], }, { root: "user_pages", pages: [ "myself/index", // 个人中心 "edit/index", // 编辑个人中心 "other/index", // 他人个人主页 "follow/index", // 球友关注页 "wallet/index", // 钱包页 "queryTransactions/index", // 查询交易 "downloadBill/index", // 下载账单 "downloadBillRecords/index", // 下载账单记录 "billDetail/index", // 账单详情 "setTransactionPassword/index", // 设置交易密码 "validPhone/index", // 验证手机号 "withdrawal/index", // 提现 ], }, // { // root: 'game_pages', // pages: [ // // 列表页 // ], // }, { root: 'order_pages', pages: [ "orderList/index", // 订单列表页 "orderDetail/index", // 订单详情页 ], }, { root: 'other_pages', pages: [ "message/index", "favorites/index", // 收藏页 "ntrp-evaluate/index", // NTRP评估页 ], } ], "preloadRule": { "home_pages/index": { "packages": ["publish_pages", 'order_pages', 'user_pages', 'other_pages'], "network": "all" // wifi/all } }, window: { backgroundTextStyle: "light", navigationBarBackgroundColor: "#fff", navigationBarTextStyle: "black", }, permission: { "scope.userLocation": { desc: "你的位置信息将用于小程序位置接口的效果展示", }, }, requiredPrivateInfos: ["getLocation", "chooseLocation"], plugins: { chooseLocation: { version: "1.0.12", provider: "wx76a9a06e5b4e693e", }, }, });