{ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/examData/index", "style": { "navigationBarTitleText": "教育中心", "navigationStyle": "custom", "app-plus": { "titleNView": false } } }, { "path": "pages/user/index", "style": { "navigationBarTitleText": "个人中心", "navigationStyle": "custom", "app-plus": { "titleNView": false } } }, { "path": "pages/webview/webview", "style": { "navigationBarTitleText": "注册中心", "navigationStyle": "custom", "app-plus": { "titleNView": false } } }, { "path": "pages/examReport/index", "style": { "navigationBarTitleText": "考试报告", "navigationStyle": "custom", "app-plus": { "titleNView": false } } }, { "path": "pages/examTest/index", "style": { "navigationBarTitleText": "查看原卷", "navigationStyle": "custom", "app-plus": { "titleNView": false } } }, { "path": "pages/userRelated/index", "style": { "navigationBarTitleText": "关于", "navigationStyle": "custom", "app-plus": { "titleNView": false } } }, { "path": "pages/userAddStudent/index", "style": { "navigationBarTitleText": "添加学生", "navigationStyle": "custom", "app-plus": { "titleNView": false } } } ,{ "path" : "pages/login/login", "style" : { "navigationBarTitleText": "", "enablePullDownRefresh": false } } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "远端小程序", "navigationBarBackgroundColor": "#F8F8F8", "backgroundColor": "#F8F8F8" }, "tabBar": { "color": "#A1A9B2", "selectedColor": "#2080F7", "borderStyle": "black", "height": "50px", // "spacing": "6px", "iconWidth": "24px", "backgroundColor": "white", "list": [{ "pagePath": "pages/examData/index", "iconPath": "static/tabBar/material.png", "selectedIconPath": "static/tabBar/material-active.png", "text": "教育中心" }, { "pagePath": "pages/user/index", "iconPath": "static/tabBar/monitor.png", "selectedIconPath": "static/tabBar/monitor-active.png", "text": "个人中心" } ] }, "condition": { //模式配置,仅开发期间生效 "current": 0, //当前激活的模式(list 的索引项) "list": [{ "name": "", //模式名称 "path": "", //启动页面,必选 "query": "" //启动参数,在页面的onLoad函数里面得到 }] } }