80 lines
1.7 KiB
JSON
80 lines
1.7 KiB
JSON
{
|
||
"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": {}
|
||
}
|