123456789101112131415161718192021222324252627282930313233343536 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "titleNView": false // 设置为false可以完全隐藏顶部导航
- }
- },
- {
- "path" : "pages/index/success",
- "style" :
- {
- "navigationBarTitleText" : "提交成功"
- }
- },
- {
- "path" : "pages/backend/backend",
- "style": {
- "titleNView": false // 设置为false可以完全隐藏顶部导航
- }
- },
- {
- "path" : "pages/backend/checkPassword",
- "style": {
- "titleNView": false // 设置为false可以完全隐藏顶部导航
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|