1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "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" : "知识详情"
- }
- }
- ],
- "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"
- }
- }
|