| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- {
- "easycom": {
- // 关键步骤3:配置easycom规则
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [
- {
- "path": "pages/home/index",
- "style": {
- "navigationBarTitleText": "门店",
- "enablePullDownRefresh": true,
- "app-plus": {
- "titleNView": false
- }
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登录",
- "app-plus": {
- "titleNView": false
- }
- }
- },
- {
- "path": "pages/activity/index",
- "style": {
- "navigationBarTitleText": "活动"
- }
- },
- {
- "path": "pages/goods/index",
- "style": {
- "navigationBarTitleText": "商品"
- }
- },
- {
- "path": "pages/goods/details",
- "style": {
- "navigationBarTitleText": "商品详情"
- }
- },
- {
- "path": "pages/shoppingCart/index",
- "style": {
- "navigationBarTitleText": "购物车"
- }
- },
- {
- "path": "pages/me/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/me/myOrder",
- "style": {
- "navigationBarTitleText": "我的订单"
- }
- },
- {
- "path": "pages/me/orderDetails",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "pages/me/setting/index",
- "style": {
- "navigationBarTitleText": "设置"
- }
- },
- {
- "path": "pages/me/myInfo",
- "style": {
- "navigationBarTitleText": "个人资料"
- }
- },
- {
- "path": "pages/me/setting/aboutApp",
- "style": {
- "navigationBarTitleText": "库比森轮胎"
- }
- },
- {
- "path": "pages/home/insurance/index",
- "style": {
- "navigationBarTitleText": "注册列表",
- "enablePullDownRefresh": false,
- "app-plus": {
- "titleNView": false //禁用原生导航栏
- }
- }
- },
- {
- "path": "pages/home/insurance/details",
- "style": {
- "navigationBarTitleText": "轮胎保注册信息",
- "app-plus": {
- "titleNView": false //禁用原生导航栏
- }
- }
- },
- {
- "path": "pages/home/insurance/rules",
- "style": {
- "navigationBarTitleText": "库比森报轮胎保服务规则"
- }
- },
- {
- "path": "pages/home/insurance/itemDetails",
- "style": {
- "navigationBarTitleText": "轮胎保保单记录",
- "enablePullDownRefresh": true
- }
- },
-
- {
- "path": "pages/home/claim/index",
- "style": {
- "navigationBarTitleText": "保单进度",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/home/claim/details",
- "style": {
- "navigationBarTitleText": "轮胎保单内容"
- }
- },
- {
- "path": "pages/settlement/index",
- "style": {
- "navigationBarTitleText": "确认订单"
- }
- },
- {
- "path": "pages/pay/index",
- "style": {
- "navigationBarTitleText": "收银台"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- // #ifdef H5
- "navigationBarBackgroundColor": "#03803B",
- // #endif
- "app-plus": {
- "bounce": "none",
- "scrollIndicator": "none",
- "titleNView": {
- "backgroundImage": "linear-gradient(to bottom, #03803B, #03803B)"
- }
- }
- },
- "tabBar": {
- "color": "#727272",
- "selectedColor": "#03803B",
- "borderStyle": "white",
- "backgroundColor": "#FFFFFF",
- "list": [{
- "pagePath": "pages/home/index",
- "iconPath": "static/images/tabBar/home.png",
- "selectedIconPath": "static/images/tabBar/home_selected.png",
- "text": "首页"
- }, {
- "pagePath": "pages/activity/index",
- "iconPath": "static/images/tabBar/activity.png",
- "selectedIconPath": "static/images/tabBar/activity_selected.png",
- "text": "活动"
- }, {
- "pagePath": "pages/goods/index",
- "iconPath": "static/images/tabBar/classification.png",
- "selectedIconPath": "static/images/tabBar/classification_selected.png",
- "text": "商品"
- }, {
- "pagePath": "pages/shoppingCart/index",
- "iconPath": "static/images/tabBar/cart.png",
- "selectedIconPath": "static/images/tabBar/cart_selected.png",
- "text": "购物车"
- }, {
- "pagePath": "pages/me/index",
- "iconPath": "static/images/tabBar/my.png",
- "selectedIconPath": "static/images/tabBar/my_selected.png",
- "text": "我的"
- }]
- }
- }
|