123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- {
- "easycom": {
- // 关键步骤3:配置easycom规则
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [
- {
- "path": "pages/home/index",
- "style": {
- "navigationBarTitleText": "经销商工作平台",
- "app-plus": {
- "titleNView": false
- }
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登录",
- "app-plus": {
- "titleNView": false
- }
- }
- },
- {
- "path": "pages/msg/index",
- "style": {
- "navigationBarTitleText": "消息"
- }
- },
- {
- "path": "pages/data/index",
- "style": {
- "navigationBarTitleText": "数据"
- }
- },
- {
- "path": "pages/me/index",
- "style": {
- "navigationBarTitleText": "我的",
- "app-plus": {
- "titleNView": false //禁用原生导航栏
- }
- }
- },
- {
- "path": "pages/me/setting",
- "style": {
- "navigationBarTitleText": "设置"
- }
- },
- {
- "path": "pages/home/store/index",
- "style": {
- "navigationBarTitleText": "门店信息",
- "app-plus": {
- "titleNView": false //禁用原生导航栏
- }
- }
- },
- {
- "path": "pages/home/store/details",
- "style": {
- "navigationBarTitleText": "门店编辑"
- }
- },
- {
- "path": "pages/home/claim/index",
- "style": {
- "navigationBarTitleText": "理赔进度",
- "app-plus": {
- "titleNView": false //禁用原生导航栏
- }
- }
- },
- {
- "path": "pages/home/claim/details",
- "style": {
- "navigationBarTitleText": "轮胎理赔内容"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- // #ifdef H5
- "navigationBarBackgroundColor": "#03803B",
- // #endif
- "app-plus": {
- "bounce": "none",
- "scrollIndicator": "none",
- "titleNView": {
- "backgroundImage": "linear-gradient(to bottom, #03803B, #FF6F3B)"
- }
- }
- },
- "tabBar": {
- "color": "#7C7C7C",
- "selectedColor": "#259255",
- "borderStyle": "white",
- "backgroundColor": "#FFFFFF",
- "list": [{
- "pagePath": "pages/home/index",
- "text": "首页",
- "iconPath": "static/images/tabBar/home.png",
- "selectedIconPath": "static/images/tabBar/home_selected.png"
- },
- {
- "pagePath": "pages/data/index",
- "text": "数据",
- "iconPath": "/static/images/tabBar/data.png",
- "selectedIconPath": "static/images/tabBar/data_selected.png"
- },
- {
- "pagePath": "pages/msg/index",
- "text": "消息",
- "iconPath": "static/images/tabBar/msg.png",
- "selectedIconPath": "static/images/tabBar/msg_selected.png"
- },
- {
- "pagePath": "pages/me/index",
- "text": "我的",
- "iconPath": "static/images/tabBar/me.png",
- "selectedIconPath": "static/images/tabBar/me_selected.png"
- }
- ]
- }
- }
|