123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/user/login",
- "style": {
- "navigationBarTitleText": "授权登陆"
- }
- },
- {
- "path": "pages/user/my",
- "style": {
- "navigationBarTitleText": "我的",
- "navigationStyle": "custom"
- }
- }
- ,{
- "path" : "pages/travel/index",
- "style" :
- {
- "navigationBarTitleText": "景区",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/government/index",
- "style" :
- {
- "navigationBarTitleText": "党政服务",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/government/detail",
- "style" :
- {
- "navigationBarTitleText": "政务详情",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/travel/detail",
- "style" :
- {
- "navigationBarTitleText": "旅游路线",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#c74547",
- "borderStyle": "black",
- "backgroundColor": "#F8F8F8",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tab/home.png",
- "selectedIconPath": "static/tab/home_select.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/travel/index",
- "iconPath": "static/tab/jq.png",
- "selectedIconPath": "static/tab/jq_select.png",
- "text": "景区"
- },
- {
- "pagePath": "pages/government/index",
- "iconPath": "static/tab/zd.png",
- "selectedIconPath": "static/tab/zd_select.png",
- "text": "党政服务"
- },
- {
- "pagePath": "pages/user/my",
- "iconPath": "static/tab/my.png",
- "selectedIconPath": "static/tab/my_select.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#c74547",
- "backgroundColor": "#F8F8F8"
- }
- }
|