123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- {
- "easycom": {
- "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "岑溪人民医院",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/user/index",
- "style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/knowledge/index",
- "style": {
- "navigationBarTitleText": "健康知识库"
- }
- },
- {
- "path": "pages/knowledge/detail",
- "style": {
- "navigationBarTitleText": "知识详情"
- }
- },
- {
- "path": "pages/introduction/index",
- "style": {
- "navigationBarTitleText": "医院介绍"
- }
- },
- {
- "path": "pages/doctor/index",
- "style": {
- "navigationBarTitleText": "医生介绍"
- }
- },
- {
- "path": "pages/follow/detail",
- "style": {
- "navigationBarTitleText": "随访详情"
- }
- },
- {
- "path": "pages/user/login",
- "style": {
- "navigationBarTitleText": "用户登录"
- }
- },
- {
- "path": "pages/other/agreement",
- "style": {
- "navigationBarTitleText": "协议"
- }
- },
- {
- "path": "pages/user/info",
- "style": {
- "navigationBarTitleText": "我的信息"
- }
- },
- {
- "path": "pages/other/setting",
- "style": {
- "navigationBarTitleText": "设置"
- }
- },
- {
- "path" : "pages/follow/index",
- "style" :
- {
- "navigationBarTitleText" : "我的回访"
- }
- },
- {
- "path" : "pages/department/index",
- "style" :
- {
- "navigationBarTitleText" : "科室介绍"
- }
- },
- {
- "path" : "pages/doctor/detail",
- "style" :
- {
- "navigationBarTitleText" : "医生介绍"
- }
- }
- ],
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#4581fb",
- "borderStyle": "black",
- "backgroundColor": "#F8F8F8",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tab/sy.png",
- "selectedIconPath": "static/tab/sy_s.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/user/index",
- "iconPath": "static/tab/my.png",
- "selectedIconPath": "static/tab/my_s.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "岑溪人民医院",
- "navigationBarBackgroundColor": "#f1f1f1"
- }
- }
|