pages.json 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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": true
  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. "path" : "pages/shop/goodsDetail",
  122. "style" :
  123. {
  124. "navigationBarTitleText": "商品详情"
  125. }
  126. }
  127. ,{
  128. "path" : "pages/index/discountCardDetail",
  129. "style" :
  130. {
  131. "navigationBarTitleText": "优惠券详情",
  132. "enablePullDownRefresh": false
  133. }
  134. }
  135. ,{
  136. "path" : "pages/user/myOrder/myOrder",
  137. "style" :
  138. {
  139. "navigationBarTitleText": "我的订单",
  140. "enablePullDownRefresh": false
  141. }
  142. },{
  143. "path" : "pages/shop/confirm",
  144. "style" :
  145. {
  146. "navigationBarTitleText": "订单确认"
  147. }
  148. }
  149. ,{
  150. "path" : "pages/user/myOrder/mallOrderDetail",
  151. "style" :
  152. {
  153. "navigationBarTitleText": "订单详情",
  154. "enablePullDownRefresh": false
  155. }
  156. }
  157. ],
  158. "tabBar": {
  159. "color": "#8a8a8a",
  160. "selectedColor": "#FF4F00",
  161. "borderStyle": "black",
  162. "backgroundColor": "#ffffff",
  163. "list": [{
  164. "pagePath": "pages/index/index",
  165. "iconPath": "./static/tabimg/index2.png",
  166. "selectedIconPath": "./static/tabimg/index1.png",
  167. "text": "首页"
  168. },
  169. {
  170. "pagePath": "pages/shop/shop",
  171. "iconPath": "./static/tabimg/shop2.png",
  172. "selectedIconPath": "./static/tabimg/shop1.png",
  173. "text": "商城"
  174. },
  175. {
  176. "pagePath": "pages/activity/activity",
  177. "iconPath": "./static/tabimg/activty2.png",
  178. "selectedIconPath": "./static/tabimg/activity1.png",
  179. "text": "活动"
  180. },
  181. {
  182. "pagePath": "pages/user/user",
  183. "iconPath": "./static/tabimg/me2.png",
  184. "selectedIconPath": "./static/tabimg/me1.png",
  185. "text": "我的"
  186. }
  187. ]
  188. },
  189. "globalStyle": {
  190. "navigationBarTextStyle": "black",
  191. "navigationBarTitleText": "uni-app",
  192. "navigationBarBackgroundColor": "#F8F8F8",
  193. "backgroundColor": "#F8F8F8"
  194. },
  195. "uniIdRouter": {}
  196. }