12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {
- "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
- }
-
- }
- ],
- "tabBar": {
- "color": "#8a8a8a",
- "selectedColor": "#FF4F00",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- // "iconPath": "static/img/table_icon_homepage1.png",
- // "selectedIconPath": "static/img/table_icon_homepage2.png",
- "text": "首页"
- },
-
-
- {
- "pagePath": "pages/user/user",
- // "iconPath": "static/img/tabme1.png",
- // "selectedIconPath": "static/img/tabme2.png",
- "text": "我的"
- }
-
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|