pages.json 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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. "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. "tabBar": {
  137. "color": "#8a8a8a",
  138. "selectedColor": "#FF4F00",
  139. "borderStyle": "black",
  140. "backgroundColor": "#ffffff",
  141. "list": [{
  142. "pagePath": "pages/index/index",
  143. "iconPath": "./static/tabimg/index2.png",
  144. "selectedIconPath": "./static/tabimg/index1.png",
  145. "text": "首页"
  146. },
  147. {
  148. "pagePath": "pages/shop/shop",
  149. "iconPath": "./static/tabimg/shop2.png",
  150. "selectedIconPath": "./static/tabimg/shop1.png",
  151. "text": "商城"
  152. },
  153. {
  154. "pagePath": "pages/activity/activity",
  155. "iconPath": "./static/tabimg/activty2.png",
  156. "selectedIconPath": "./static/tabimg/activity1.png",
  157. "text": "活动"
  158. },
  159. {
  160. "pagePath": "pages/user/user",
  161. "iconPath": "./static/tabimg/me2.png",
  162. "selectedIconPath": "./static/tabimg/me1.png",
  163. "text": "我的"
  164. }
  165. ]
  166. },
  167. "globalStyle": {
  168. "navigationBarTextStyle": "black",
  169. "navigationBarTitleText": "uni-app",
  170. "navigationBarBackgroundColor": "#F8F8F8",
  171. "backgroundColor": "#F8F8F8"
  172. },
  173. "uniIdRouter": {}
  174. }