pages.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "uni-app"
  7. }
  8. },
  9. {
  10. "path": "pages/user/user",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. }
  15. ,{
  16. "path" : "pages/user/historySpend",
  17. "style" :
  18. {
  19. "navigationBarTitleText": "历史消费",
  20. "enablePullDownRefresh": true
  21. }
  22. },
  23. {
  24. "path" : "pages/user/historyDetail",
  25. "style" :
  26. {
  27. "navigationBarTitleText": "消费明细",
  28. "enablePullDownRefresh": true
  29. }
  30. }
  31. ,{
  32. "path" : "pages/user/checkReport",
  33. "style" :
  34. {
  35. "navigationBarTitleText": "车检报告",
  36. "enablePullDownRefresh": true
  37. }
  38. }
  39. ,{
  40. "path" : "pages/user/reportDetail",
  41. "style" :
  42. {
  43. "navigationBarTitleText": "检测报告",
  44. "enablePullDownRefresh": false
  45. }
  46. }
  47. ,{
  48. "path" : "pages/index/onlineBooking",
  49. "style" :
  50. {
  51. "navigationBarTitleText": "在线预约",
  52. "enablePullDownRefresh": false
  53. }
  54. },{
  55. "path" : "pages/index/confirmYuyue",
  56. "style" :
  57. {
  58. "navigationBarTitleText": "确认预约",
  59. "enablePullDownRefresh": false
  60. }
  61. },
  62. {
  63. "path" : "pages/shop/shop",
  64. "style" :
  65. {
  66. "navigationBarTitleText": "商城",
  67. "enablePullDownRefresh": false
  68. }
  69. },
  70. {
  71. "path" : "pages/activity/activity",
  72. "style" :
  73. {
  74. "navigationBarTitleText": "活动",
  75. "enablePullDownRefresh": false
  76. }
  77. }
  78. ],
  79. "tabBar": {
  80. "color": "#8a8a8a",
  81. "selectedColor": "#FF4F00",
  82. "borderStyle": "black",
  83. "backgroundColor": "#ffffff",
  84. "list": [{
  85. "pagePath": "pages/index/index",
  86. "iconPath": "./static/tabimg/index2.png",
  87. "selectedIconPath": "./static/tabimg/index1.png",
  88. "text": "首页"
  89. },
  90. {
  91. "pagePath": "pages/shop/shop",
  92. "iconPath": "./static/tabimg/shop2.png",
  93. "selectedIconPath": "./static/tabimg/shop1.png",
  94. "text": "商城"
  95. },
  96. {
  97. "pagePath": "pages/activity/activity",
  98. "iconPath": "./static/tabimg/activity2.png",
  99. "selectedIconPath": "./static/tabimg/activity1.png",
  100. "text": "活动"
  101. },
  102. {
  103. "pagePath": "pages/user/user",
  104. "iconPath": "./static/tabimg/me2.png",
  105. "selectedIconPath": "./static/tabimg/me1.png",
  106. "text": "我的"
  107. }
  108. ]
  109. },
  110. "globalStyle": {
  111. "navigationBarTextStyle": "black",
  112. "navigationBarTitleText": "uni-app",
  113. "navigationBarBackgroundColor": "#F8F8F8",
  114. "backgroundColor": "#F8F8F8"
  115. },
  116. "uniIdRouter": {}
  117. }