123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
-
-
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- },
- {
- "path": "pages/user/user",
- "style": {
- "navigationStyle": "custom"
-
- }
- }
- ,{
- "path" : "pages/user/historySpend",
- "style" :
- {
- "navigationBarTitleText": "历史消费",
- "enablePullDownRefresh": true
- }
-
- },
- {
- "path" : "pages/user/historyDetail",
- "style" :
- {
- "navigationBarTitleText": "消费明细",
- "enablePullDownRefresh": true
- }
-
- }
- ,{
- "path" : "pages/user/checkReport",
- "style" :
- {
- "navigationBarTitleText": "车检报告",
- "enablePullDownRefresh": true
- }
-
- }
- ,{
- "path" : "pages/user/reportDetail",
- "style" :
- {
- "navigationBarTitleText": "检测报告",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/index/onlineBooking",
- "style" :
- {
- "navigationBarTitleText": "在线预约",
- "enablePullDownRefresh": false
- }
-
- },{
- "path" : "pages/index/confirmYuyue",
- "style" :
- {
- "navigationBarTitleText": "确认预约",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/shop/shop",
- "style" :
- {
- "navigationBarTitleText": "商城",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/activity/activity",
- "style" :
- {
- "navigationBarTitleText": "活动",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "tabBar": {
- "color": "#8a8a8a",
- "selectedColor": "#FF4F00",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "./static/tabimg/index2.png",
- "selectedIconPath": "./static/tabimg/index1.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/shop/shop",
- "iconPath": "./static/tabimg/shop2.png",
- "selectedIconPath": "./static/tabimg/shop1.png",
- "text": "商城"
- },
- {
- "pagePath": "pages/activity/activity",
- "iconPath": "./static/tabimg/activity2.png",
- "selectedIconPath": "./static/tabimg/activity1.png",
- "text": "活动"
- },
- {
- "pagePath": "pages/user/user",
- "iconPath": "./static/tabimg/me2.png",
- "selectedIconPath": "./static/tabimg/me1.png",
- "text": "我的"
- }
-
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|