Files
hx123666/scoring/pages.json
2025-11-24 15:30:05 +08:00

80 lines
1.7 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "计分器"
}
},
{
"path" : "pages/history-game/history-game",
"style" :
{
"navigationBarTitleText" : "历史记录"
}
},
{
"path": "pages/scoring/index", // 计分页面(新增注册)
"style": { "navigationBarTitleText": "开局计分" }
},
{
"path": "pages/game-detail/index",
"style": {
"navigationBarTitleText": "对局详情"
}
},
{
"path": "pages/edit-user-info/index",
"style": {
"navigationBarTitleText": "编辑用户信息"
}
},
{
"path": "pages/settle/index", // 结算页面(新增注册)
"style": { "navigationBarTitleText": "房间结算" }
},
{
"path": "pages/single-room/index",
"style": {
"navigationBarTitleText": "单人模式房间"
}
},
{
"path" : "pages/my/my",
"style" :
{
"navigationBarTitleText" : "个人信息",
"navigationStyle": "custom"
}
}
],
"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": {}
}