27 lines
763 B
JSON
27 lines
763 B
JSON
{
|
||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
{
|
||
"path": "pages/index/index",
|
||
"style": {
|
||
"navigationBarTitleText": "导航栏",
|
||
"navigationStyle": "custom", // 使用自定义导航栏,系统会关闭默认的原生导航栏
|
||
"titleNView": false //禁用原生导航栏
|
||
},
|
||
"app-plus": {
|
||
"titleNView": false //禁用原生导航栏
|
||
}
|
||
}
|
||
],
|
||
"globalStyle": {
|
||
"app-plus": {
|
||
"titleNView": false //禁用原生导航栏
|
||
},
|
||
"navigationBarTextStyle": "black",
|
||
"navigationBarTitleText": "uni-app",
|
||
"navigationBarBackgroundColor": "#FE5C2D",
|
||
"backgroundColor": "#FE5C2D",
|
||
"navigationStyle":"custom"//禁用原生导航
|
||
},
|
||
"uniIdRouter": {}
|
||
}
|