37 lines
813 B
JSON
37 lines
813 B
JSON
{
|
||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
{
|
||
"path": "pages/index/index",
|
||
"style": {
|
||
"navigationBarTitleText": "首页"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/apply/index",
|
||
"style": {
|
||
"navigationBarTitleText": "个人信息",
|
||
"navigationBarBackgroundColor": "#fff"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/apply/complete",
|
||
"style": {
|
||
"navigationBarTitleText": "",
|
||
"navigationBarBackgroundColor": "#fff",
|
||
"app-plus": {
|
||
"titleNView": {
|
||
// "titleSize": "18px",
|
||
"autoBackButton": false
|
||
}
|
||
}
|
||
}
|
||
}
|
||
],
|
||
"globalStyle": {
|
||
"navigationBarTextStyle": "black",
|
||
"navigationBarTitleText": "uni-app",
|
||
"navigationBarBackgroundColor": "#f6faff",
|
||
"backgroundColor": "#F8F8F8"
|
||
},
|
||
"uniIdRouter": {}
|
||
} |