93 lines
2.3 KiB
TypeScript
93 lines
2.3 KiB
TypeScript
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", // 球局详情页
|
|
"game_pages/sharePoster/index",
|
|
],
|
|
subPackages: [
|
|
|
|
{
|
|
root: 'publish_pages',
|
|
pages: [
|
|
"publishBall/index",
|
|
"footballRules/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",
|
|
"comment_reply/index", // 收到的评论和回复
|
|
"new_follow/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",
|
|
},
|
|
},
|
|
"lazyCodeLoading": "requiredComponents"
|
|
});
|