{ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/index/index", "style": { "navigationBarTitleText": "筛查报告" } }, { "path": "pages/my/index", "style": { "navigationStyle": "custom" } }, { "path": "pages/addPatient/index", "style": { "navigationBarTitleText": "添加学生" } }, { "path": "pages/chart/index", "style": { "navigationBarTitleText": "健康分析" } }, { "path": "pages/setting/index", "style": { "navigationBarTitleText": "个人设置" } }, { "path": "pages/login/index", "style": { "navigationBarTitleText": "筛查中心" } } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "筛查中心", "navigationBarBackgroundColor": "#ffffff", "backgroundColor": "#ffffff" }, "tabBar": { "color": "#B2B6BE", "selectedColor": "#10AEFF", "borderStyle": "white", "list": [{ "pagePath": "pages/index/index", "text": "筛查报告", "iconPath": "static/tabbar/record.png", "selectedIconPath": "static/tabbar/record_on.png" }, { "pagePath": "pages/my/index", "text": "个人中心", "iconPath": "static/tabbar/mine.png", "selectedIconPath": "static/tabbar/mine_on.png" } ] }, "window": { "navigationBarBackgroundColor": "#fff", "navigationBarTextStyle": "black" } }