123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [
- {
- "path": "pages/tabbar/station/stationList",
- "style": {
- "navigationStyle": "custom",
- // #ifdef MP-ALIPAY
- "transparentTitle": "always",
- // #endif
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/tabbar/mine/my",
- "style": {
- "enablePullDownRefresh": true,
- // #ifdef MP-ALIPAY
- "transparentTitle": "always",
- // #endif
- "navigationStyle": "custom"
- }
- }
- ],
- "subPackages": [
- {
- "root": "pages/mine",
- "pages": [
- {
- "path": "order/myOrder",
- "style": {
- "navigationBarTitleText": "我的订单",
- "enablePullDownRefresh": true,
- "app-plus": {
- "bounce": "none"
- }
- }
- },
- {
- "path": "order/detail",
- "style": {
- "navigationStyle": "custom",
- // #ifdef MP-ALIPAY
- "transparentTitle": "always",
- // #endif
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "订单详情",
- "backgroundColor": "@tabBarBgColor"
- }
- },
- {
- "path": "car/index",
- "style": {
- "navigationBarTitleText": "我的车辆"
- }
- },
- {
- "path": "car/detail",
- "style": {
- "navigationBarTitleText": "添加车辆"
- }
- },
- {
- "path": "feedback/list",
- "style": {
- "navigationBarTitleText": "反馈列表",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "feedback/submit",
- "style": {
- "navigationBarTitleText": "意见反馈"
- }
- },
- {
- "path": "about/index",
- "style": {
- "navigationBarTitleText": "关于我们"
- }
- },
- {
- "path": "profile/index",
- "style": {
- "navigationBarTitleText": "个人信息",
- "app-plus": {
- "titleNView": {
- "padding-right": "12",
- "buttons": [
- {
- "text": "保存",
- "fontSize": "16",
- "width": "auto",
- "color": "#FFFFFF"
- }
- ]
- }
- }
- }
- }
- ]
- },
- {
- "root": "pages/passport",
- "pages": [
- {
- "path": "login",
- "style": {
- "navigationBarTitleText": "",
- "navigationStyle": "custom",
- // #ifdef MP-ALIPAY
- "transparentTitle": "always",
- // #endif
- "app-plus": {
- "titleNView": false,
- "animationType": "slide-in-bottom",
- "scrollIndicator": "none",
- "safearea": {
- "bottom": {
- "offset": "none"
- }
- }
- }
- }
- },
- {
- "path": "mpLogin",
- "style": {
- "navigationBarTitleText": "小程序登录",
- "navigationStyle": "custom",
- // #ifdef MP-ALIPAY
- "transparentTitle": "always",
- // #endif
- "navigationBarTextStyle": "black"
- }
- }
- ]
- },
- {
- "root": "pages/station",
- "pages": [
- {
- "path": "index"
- },
- {
- "path": "charge/charging",
- "style": {
- "navigationStyle": "custom",
- // #ifdef MP-ALIPAY
- "transparentTitle": "always",
- // #endif
- "navigationBarTextStyle": "white",
- "app-plus": {
- "titleNView": false,
- "animationType": "slide-in-bottom",
- "scrollIndicator": "none",
- "safearea": {
- "bottom": {
- "offset": "none"
- }
- }
- }
- }
- }
- ]
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "@navTxtStyle",
- "navigationBarTitleText": "",
- "titleColor": "#303133",
- "navigationBarBackgroundColor": "@tabBarBgColor",
- "backgroundColor": "@tabBarBgColor",
- "app-plus": {
- // 全局关闭回弹功能
- "bounce": "none"
- }
- },
- "tabBar": {
- "color": "#C2C2C2",
- "selectedColor": "#0974C5",
- "borderStyle": "black",
- "backgroundColor": "@tabBarBgColor",
- "list": [
- {
- "pagePath": "pages/tabbar/station/stationList",
- "iconPath": "static/tabbar/charging.png",
- "selectedIconPath": "static/tabbar/charging-s.png",
- "text": "充电"
- },
- {
- "pagePath": "pages/tabbar/mine/my",
- "iconPath": "static/tabbar/my.png",
- "selectedIconPath": "static/tabbar/my-s.png",
- "text": "我的"
- }
- ]
- }
- }
|