| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationStyle": "custom",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/my/my",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh" : false
- }
- }, {
- "path" : "pages/userInfo/userInfo",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/forgetPassword/forgetPassword",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/updatePassword/updatePassword",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationStyle": "custom",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/register/register",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/specialistsList/specialistsList",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/earningsList/earningsList",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/todayEarningsList/todayEarningsList",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/todayPromotionList/todayPromotionList",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/directPromotionList/directPromotionList",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/indirectPromotionList/indirectPromotionList",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh" : false
- }
- }
- ],
- "tabBar": {
- "color": "#999999",
- "selectedColor": "#333333",
- "borderStyle": "white",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tabBarImg/dianzan.png",
- "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
- "text": "首页"
- }, {
- "pagePath": "pages/my/my",
- "iconPath": "static/tabBarImg/me.png",
- "selectedIconPath": "static/tabBarImg/me_cur.png",
- "text": "我的"
- }]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- // "navigationBarTitleText": "加载中",
- "navigationBarBackgroundColor": "#FFE05C",
- "backgroundColor": "#FFE05C"
- },
- "uniIdRouter": {}
- }
|