export default defineAppConfig({ pages: [ "pages/home/index", //中转页 ], subPackages: [ { root: 'login_pages', pages: [ "login/index/index", "login/verification/index", "login/terms/index", ], }, { root: 'publish_pages', pages: [ "publishBall/index", ], }, { root: "mod_user", pages: [ "pages/myself/index", // 个人中心 "pages/edit/index", // 个人中心 ], }, { root: 'game_pages', pages: [ "list/index", // 列表页 "search/index", // 搜索页 "searchResult/index", // 搜索结果页面 "detail/index", // 球局详情页 ], }, { root: 'order_pages', pages: [ "orderList/index", // 订单列表页 "orderDetail/index", // 订单详情页 ], }, { root: 'other_pages', pages: [ "message/index", // 消息页 "favorites/index", // 收藏页 "ntrp-evaluate/index", // NTRP评估页 ], } ], window: { backgroundTextStyle: "light", navigationBarBackgroundColor: "#fff", navigationBarTextStyle: "black", }, permission: { "scope.userLocation": { desc: "你的位置信息将用于小程序位置接口的效果展示", }, }, requiredPrivateInfos: ["getLocation", "chooseLocation"], plugins: { chooseLocation: { version: "1.0.12", provider: "wx76a9a06e5b4e693e", }, }, });