12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- }, {
- "path": "pages/userinfo/userinfo",
- "style": {
- "navigationBarTitleText": "基础资料",
- "enablePullDownRefresh": true
- }
- }, {
- "path": "pages/medication/medication",
- "style": {
- "navigationBarTitleText": "随访用药",
- "enablePullDownRefresh": true
- }
- }, {
- "path": "pages/eye_ground/eye_ground",
- "style": {
- "navigationBarTitleText": "眼底检查",
- "enablePullDownRefresh": true
- }
- }, {
- "path": "pages/home_monitoring/home_monitoring",
- "style": {
- "navigationBarTitleText": "健康监测",
- "enablePullDownRefresh": true
- }
- }, {
- "path": "pages/chart-model/chart-model",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/health_report/health_report",
- "style": {
- "navigationBarTitleText": "健康报告",
- "enablePullDownRefresh": false
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "慢病报告",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "backgroundColorTop": "000"
- },
- "uniIdRouter": {}
- }
|