41 lines
885 B
JSON
41 lines
885 B
JSON
{
|
||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
{
|
||
"path": "pages/game/game",
|
||
"style": {
|
||
"navigationStyle": "custom",
|
||
// #ifdef MP-WEIXIN
|
||
"disableScroll": true,
|
||
// #endif
|
||
"navigationBarTitleText" : "宝藏猎人"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/index/index",
|
||
"style": {
|
||
"navigationStyle": "custom",
|
||
"navigationBarTitleText" : "宝藏猎人-登录"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/my/my",
|
||
"style": {
|
||
"navigationStyle": "custom",
|
||
// #ifdef MP-WEIXIN
|
||
"disableScroll": true,
|
||
// #endif
|
||
"navigationBarTitleText" : "我的"
|
||
|
||
}
|
||
}
|
||
],
|
||
"globalStyle": {
|
||
"navigationBarTextStyle": "black",
|
||
"navigationBarTitleText": "uni-app",
|
||
"navigationBarBackgroundColor": "#F8F8F8",
|
||
"backgroundColor": "#F8F8F8",
|
||
"app-plus": {
|
||
"titleNView": false
|
||
}
|
||
}
|
||
} |