123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "智疗助手",
- "enablePullDownRefresh": true,
- "navigationStyle": "custom",
- "navigationBarBackgroundColor": "#ffffff"
- }
- },
- {
- "path" : "pages/login/login",
- "style" :
- {
- "navigationBarTitleText" : "登陆",
- "navigationBarBackgroundColor": "#1678ff",
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path" : "pages/my/my",
- "style" :
- {
- "navigationBarTitleText" : "我的",
- "enablePullDownRefresh": true,
- "navigationBarTextStyle": "white",
- "navigationBarBackgroundColor": "#1678ff"
- }
- },
- {
- "path" : "pages/test/test",
- "style" :
- {
- "navigationBarTitleText" : ""
- }
- },
- {
- "path" : "pages/BMI/BMI",
- "style" :
- {
- "navigationBarTitleText" : "BMI计算",
- "navigationBarBackgroundColor": "#ffffff",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path" : "pages/img_process/img_process",
- "style" :
- {
- "navigationBarTitleText" : "病例识别"
- }
- },
- {
- "path" : "pages/BMI/BMI_output/BMI_output",
- "style" :
- {
- "navigationBarTitleText" : "BMI计算结果",
- "navigationBarBackgroundColor": "#ffffff",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path" : "pages/BMI/BMI_history/BMI_history",
- "style" :
- {
- "navigationBarTitleText" : "BMI 记录",
- "navigationBarBackgroundColor": "#f1f3f2"
- }
- },
- {
- "path" : "pages/my/user_info/user_info",
- "style" :
- {
- "navigationBarTitleText" : "个人资料",
- "enablePullDownRefresh": true,
- "navigationBarTextStyle": "white",
- "navigationBarBackgroundColor": "#1678ff"
- }
- },
- {
- "path" : "pages/ai/ai",
- "style" :
- {
- "navigationBarTitleText" : ""
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "首页",
- "navigationBarBackgroundColor": "#ffffff"
- },
- "tabBar": {
- "borderStyle": "black",
- "backgroundColor": "#fafbff",
- "selectedColor": "#1296db",
- "iconWidth": "20px",
- "fontSize": "10px",
- "list": [
- {
- "pagePath": "pages/ai/ai",
- "text": "AI",
- "iconPath": "/static/tabs/ai-icon.png",
- "selectedIconPath": "/static/tabs/ai-icon-c.png"
- },
- {
- "pagePath": "pages/index/index",
- "text": "首页",
- "iconPath": "/static/tabs/home-icon.png",
- "selectedIconPath": "/static/tabs/home-icon-c.png"
- },
- {
- "pagePath": "pages/my/my",
- "text": "我的",
- "iconPath": "/static/tabs/user-icon.png",
- "selectedIconPath": "/static/tabs/user-icon-c.png"
- }
- ]
- },
- "uniIdRouter": {}
- }
|