Files
1XJT/scoring/pages.json

101 lines
1.8 KiB
JSON
Raw Normal View History

2025-11-12 15:08:51 +08:00
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "计分器"
}
},
{
"path" : "pages/history-game/history-game",
"style" :
{
"navigationBarTitleText" : "历史记录"
}
},
{
"path" : "pages/my/my",
"style" :
{
"navigationBarTitleText" : "个人信息",
"navigationStyle": "custom"
}
},
{
"path" : "pages/single/single",
"style" :
{
"navigationBarTitleText" : "单人-房间"
}
},
{
"path" : "pages/user-detail/user-detail",
"style" :
{
"navigationBarTitleText" : "用户信息"
}
},
{
"path" : "pages/compute/compute",
"style" :
{
2025-12-01 12:13:03 +08:00
"navigationBarTitleText" : "计分页面"
}
},
{
"path" : "pages/over/over",
"style" :
{
"navigationBarTitleText" : "最终结算"
2025-11-12 15:08:51 +08:00
}
2025-12-04 11:00:36 +08:00
},
{
"path" : "pages/multiplayer/multiplayer",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/mul-compute/mul-compute",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/mul-over/mul-over",
"style" :
{
"navigationBarTitleText" : ""
}
2025-11-12 15:08:51 +08:00
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"list": [
{
"text": "首页",
"pagePath": "pages/index/index",
"iconPath": "/static/logo.png"
},
{
"text": "历史记录",
"pagePath": "pages/history-game/history-game",
"iconPath": "/static/logo.png"
},
{
"text": "个人信息",
"pagePath": "pages/my/my",
"iconPath": "/static/logo.png"
}
]
},
"uniIdRouter": {}
}