pages.json 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. "enablePullDownRefresh": true
  14. }
  15. }
  16. ,{
  17. "path" : "pages/user/historySpend",
  18. "style" :
  19. {
  20. "navigationBarTitleText": "历史消费",
  21. "enablePullDownRefresh": true
  22. }
  23. },
  24. {
  25. "path" : "pages/user/historyDetail",
  26. "style" :
  27. {
  28. "navigationBarTitleText": "消费明细",
  29. "enablePullDownRefresh": true
  30. }
  31. }
  32. ,{
  33. "path" : "pages/user/checkReport",
  34. "style" :
  35. {
  36. "navigationBarTitleText": "车检报告",
  37. "enablePullDownRefresh": true
  38. }
  39. }
  40. ,{
  41. "path" : "pages/user/reportDetail",
  42. "style" :
  43. {
  44. "navigationBarTitleText": "检测报告",
  45. "enablePullDownRefresh": false
  46. }
  47. },
  48. {
  49. "path" : "pages/index/shopList",
  50. "style" :
  51. {
  52. "navigationBarTitleText": "门店列表",
  53. "enablePullDownRefresh": true
  54. }
  55. },
  56. {
  57. "path" : "pages/index/onlineBooking",
  58. "style" :
  59. {
  60. "navigationBarTitleText": "在线预约",
  61. "enablePullDownRefresh": false
  62. }
  63. },{
  64. "path" : "pages/index/confirmYuyue",
  65. "style" :
  66. {
  67. "navigationBarTitleText": "确认预约",
  68. "enablePullDownRefresh": false
  69. }
  70. },
  71. {
  72. "path" : "pages/shop/shop",
  73. "style" :
  74. {
  75. "navigationBarTitleText": "商城",
  76. "enablePullDownRefresh": false
  77. }
  78. },
  79. {
  80. "path" : "pages/activity/activity",
  81. "style" :
  82. {
  83. "navigationBarTitleText": "活动",
  84. "enablePullDownRefresh": false
  85. }
  86. }
  87. ,{
  88. "path" : "pages/user/myBespeak",
  89. "style" :
  90. {
  91. "navigationBarTitleText": "我的预约",
  92. "enablePullDownRefresh": true
  93. }
  94. }
  95. ,{
  96. "path" : "pages/user/bespeakDetail",
  97. "style" :
  98. {
  99. "navigationBarTitleText": "预约详情",
  100. "enablePullDownRefresh": true
  101. }
  102. }
  103. ,{
  104. "path" : "pages/index/vipCard",
  105. "style" :
  106. {
  107. "navigationBarTitleText": "会员卡",
  108. "navigationBarBackgroundColor": "#171723",
  109. "navigationBarTextStyle": "white"
  110. }
  111. }
  112. ,{
  113. "path" : "pages/index/discountCard",
  114. "style" :
  115. {
  116. "navigationBarTitleText": "优惠券",
  117. "enablePullDownRefresh": false
  118. }
  119. }
  120. ],
  121. "tabBar": {
  122. "color": "#8a8a8a",
  123. "selectedColor": "#FF4F00",
  124. "borderStyle": "black",
  125. "backgroundColor": "#ffffff",
  126. "list": [{
  127. "pagePath": "pages/index/index",
  128. "iconPath": "./static/tabimg/index2.png",
  129. "selectedIconPath": "./static/tabimg/index1.png",
  130. "text": "首页"
  131. },
  132. {
  133. "pagePath": "pages/shop/shop",
  134. "iconPath": "./static/tabimg/shop2.png",
  135. "selectedIconPath": "./static/tabimg/shop1.png",
  136. "text": "商城"
  137. },
  138. {
  139. "pagePath": "pages/activity/activity",
  140. "iconPath": "./static/tabimg/activty2.png",
  141. "selectedIconPath": "./static/tabimg/activity1.png",
  142. "text": "活动"
  143. },
  144. {
  145. "pagePath": "pages/user/user",
  146. "iconPath": "./static/tabimg/me2.png",
  147. "selectedIconPath": "./static/tabimg/me1.png",
  148. "text": "我的"
  149. }
  150. ]
  151. },
  152. "globalStyle": {
  153. "navigationBarTextStyle": "black",
  154. "navigationBarTitleText": "uni-app",
  155. "navigationBarBackgroundColor": "#F8F8F8",
  156. "backgroundColor": "#F8F8F8"
  157. },
  158. "uniIdRouter": {}
  159. }