pages.json 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/user/user",
  11. "style": {
  12. "navigationBarTitleText": "我的",
  13. "navigationBarBackgroundColor": "#D53533",
  14. "navigationBarTextStyle": "white"
  15. }
  16. }
  17. ,{
  18. "path" : "pages/user/historySpend",
  19. "style" :
  20. {
  21. "navigationBarTitleText": "历史消费",
  22. "enablePullDownRefresh": true
  23. }
  24. },
  25. {
  26. "path" : "pages/user/historyDetail",
  27. "style" :
  28. {
  29. "navigationBarTitleText": "消费明细",
  30. "enablePullDownRefresh": true
  31. }
  32. }
  33. ,{
  34. "path" : "pages/user/checkReport",
  35. "style" :
  36. {
  37. "navigationBarTitleText": "车检报告",
  38. "enablePullDownRefresh": true
  39. }
  40. }
  41. ,{
  42. "path" : "pages/user/reportDetail",
  43. "style" :
  44. {
  45. "navigationBarTitleText": "检测报告",
  46. "enablePullDownRefresh": false
  47. }
  48. },
  49. {
  50. "path" : "pages/index/shopList",
  51. "style" :
  52. {
  53. "navigationBarTitleText": "门店列表",
  54. "enablePullDownRefresh": true
  55. }
  56. },
  57. {
  58. "path" : "pages/index/onlineBooking",
  59. "style" :
  60. {
  61. "navigationBarTitleText": "在线预约",
  62. "enablePullDownRefresh": false
  63. }
  64. },{
  65. "path" : "pages/index/confirmYuyue",
  66. "style" :
  67. {
  68. "navigationBarTitleText": "确认预约",
  69. "enablePullDownRefresh": false
  70. }
  71. },
  72. {
  73. "path" : "pages/shop/shop",
  74. "style" :
  75. {
  76. "navigationBarTitleText": "商城",
  77. "enablePullDownRefresh": true
  78. }
  79. },
  80. {
  81. "path" : "pages/activity/activity",
  82. "style" :
  83. {
  84. "navigationBarTitleText": "活动",
  85. "enablePullDownRefresh": false
  86. }
  87. }
  88. ,{
  89. "path" : "pages/user/myBespeak",
  90. "style" :
  91. {
  92. "navigationBarTitleText": "我的预约",
  93. "enablePullDownRefresh": true
  94. }
  95. }
  96. ,{
  97. "path" : "pages/user/bespeakDetail",
  98. "style" :
  99. {
  100. "navigationBarTitleText": "预约详情",
  101. "enablePullDownRefresh": true
  102. }
  103. }
  104. ,{
  105. "path" : "pages/index/vipCard",
  106. "style" :
  107. {
  108. "navigationBarTitleText": "会员卡",
  109. "navigationBarBackgroundColor": "#171723",
  110. "navigationBarTextStyle": "white"
  111. }
  112. }
  113. ,{
  114. "path" : "pages/index/discountCard",
  115. "style" :
  116. {
  117. "navigationBarTitleText": "优惠券",
  118. "enablePullDownRefresh": false
  119. }
  120. },
  121. {
  122. "path" : "pages/shop/goodsDetail",
  123. "style" :
  124. {
  125. "navigationBarTitleText": "商品详情"
  126. }
  127. }
  128. ,{
  129. "path" : "pages/index/discountCardDetail",
  130. "style" :
  131. {
  132. "navigationBarTitleText": "优惠券详情",
  133. "enablePullDownRefresh": false
  134. }
  135. }
  136. ,{
  137. "path" : "pages/user/myOrder/myOrder",
  138. "style" :
  139. {
  140. "navigationBarTitleText": "我的订单",
  141. "enablePullDownRefresh": true
  142. }
  143. },{
  144. "path" : "pages/shop/confirm",
  145. "style" :
  146. {
  147. "navigationBarTitleText": "订单确认"
  148. }
  149. },
  150. {
  151. "path" : "pages/shop/ckshopList",
  152. "style" :
  153. {
  154. "navigationBarTitleText": "选择门店"
  155. }
  156. }
  157. ,{
  158. "path" : "pages/user/myOrder/mallOrderDetail",
  159. "style" :
  160. {
  161. "navigationStyle": "custom",
  162. "enablePullDownRefresh": true
  163. }
  164. },
  165. {
  166. "path" : "pages/user/addCar/addCar",
  167. "style" :
  168. {
  169. "navigationBarTitleText": "添加车辆",
  170. "enablePullDownRefresh": false
  171. }
  172. },
  173. {
  174. "path": "pages/user/addCar/carModel",
  175. "style": {
  176. "navigationStyle": "custom"
  177. }
  178. },
  179. {
  180. "path": "pages/user/addCar/cailist",
  181. "style": {
  182. "navigationBarTitleText": "我的车库",
  183. "enablePullDownRefresh": false
  184. }
  185. }
  186. ,{
  187. "path" : "pages/index/paint",
  188. "style" :
  189. {
  190. "navigationBarTitleText": "钣金喷漆",
  191. "enablePullDownRefresh": false
  192. }
  193. },
  194. {
  195. "path" : "pages/index/rescue",
  196. "style" :
  197. {
  198. "navigationBarTitleText": "紧急救援"
  199. }
  200. },
  201. {
  202. "path" : "pages/index/maintain",
  203. "style" :
  204. {
  205. "navigationBarTitleText": "保养"
  206. }
  207. },
  208. {
  209. "path": "pages/index/handbook",
  210. "style": {
  211. "navigationBarTitleText": "保养手册",
  212. "enablePullDownRefresh": false
  213. }
  214. }
  215. ,{
  216. "path" : "pages/index/personalCard",
  217. "style" :
  218. {
  219. "navigationBarTitleText": "个人名片",
  220. "enablePullDownRefresh": false
  221. }
  222. },
  223. {
  224. "path" : "pages/index/paintSure",
  225. "style" :
  226. {
  227. "navigationBarTitleText": "订单确认",
  228. "enablePullDownRefresh": false
  229. }
  230. }
  231. ,{
  232. "path" : "pages/user/expertServices",
  233. "style" :
  234. {
  235. "navigationBarTitleText": "服务专家",
  236. "enablePullDownRefresh": true
  237. }
  238. },
  239. {
  240. "path" : "pages/index/paintShopList",
  241. "style" :
  242. {
  243. "navigationBarTitleText": "选择门店",
  244. "enablePullDownRefresh": true
  245. }
  246. },
  247. {
  248. "path": "pages/user/feedBack",
  249. "style": {
  250. "navigationBarTitleText": "意见反馈",
  251. "navigationBarBackgroundColor": "#FFFFFF",
  252. "enablePullDownRefresh": false
  253. }
  254. }
  255. ,{
  256. "path" : "pages/user/myOrder/paintOrderDetail",
  257. "style" :
  258. {
  259. "navigationStyle": "custom",
  260. "enablePullDownRefresh": true
  261. }
  262. }
  263. ,{
  264. "path" : "pages/user/myOrder/activityOrderDetail",
  265. "style" :
  266. {
  267. "navigationStyle": "custom",
  268. "enablePullDownRefresh": true
  269. }
  270. },
  271. {
  272. "path": "pages/activity/jkDetail",
  273. "style": {
  274. "navigationBarTitleText": "活动详情"
  275. }
  276. }
  277. ],
  278. "tabBar": {
  279. "color": "#8a8a8a",
  280. "selectedColor": "#D53533",
  281. "borderStyle": "black",
  282. "backgroundColor": "#ffffff",
  283. "list": [{
  284. "pagePath": "pages/index/index",
  285. "iconPath": "./static/tabimg/index2.png",
  286. "selectedIconPath": "./static/tabimg/index1.png",
  287. "text": "首页"
  288. },
  289. {
  290. "pagePath": "pages/shop/shop",
  291. "iconPath": "./static/tabimg/shop2.png",
  292. "selectedIconPath": "./static/tabimg/shop1.png",
  293. "text": "商城"
  294. },
  295. {
  296. "pagePath": "pages/activity/activity",
  297. "iconPath": "./static/tabimg/activty2.png",
  298. "selectedIconPath": "./static/tabimg/activity1.png",
  299. "text": "活动"
  300. },
  301. {
  302. "pagePath": "pages/user/user",
  303. "iconPath": "./static/tabimg/me2.png",
  304. "selectedIconPath": "./static/tabimg/me1.png",
  305. "text": "我的"
  306. }
  307. ]
  308. },
  309. "globalStyle": {
  310. "navigationBarTextStyle": "black",
  311. "navigationBarTitleText": "uni-app",
  312. "navigationBarBackgroundColor": "#F8F8F8",
  313. "backgroundColor": "#F8F8F8"
  314. },
  315. "uniIdRouter": {}
  316. }