pages.json 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/home/index",
  5. "style" :
  6. {
  7. "navigationBarTitleText": "优1优5",
  8. "enablePullDownRefresh": false
  9. }
  10. },
  11. {
  12. "path": "pages/shop/CarsClass/index",
  13. "style" :
  14. {
  15. "navigationBarTitleText": "买车",
  16. "enablePullDownRefresh": false
  17. }
  18. },
  19. {
  20. "path": "pages/shop/LeaseCarClass/index",
  21. "style" :
  22. {
  23. "navigationBarTitleText": "租车",
  24. "enablePullDownRefresh": false
  25. }
  26. },
  27. {
  28. "path": "pages/shop/ShoppingMall/index",
  29. "style" :
  30. {
  31. "navigationBarTitleText": "商城",
  32. "enablePullDownRefresh": false
  33. }
  34. },
  35. {
  36. "path": "pages/user/User/index",
  37. "style" :
  38. {
  39. "navigationBarTitleText": "我的",
  40. "enablePullDownRefresh": false
  41. }
  42. },
  43. {
  44. "path": "pages/preCarWash/index",
  45. "style" :
  46. {
  47. "navigationBarTitleText": "预约洗车",
  48. "enablePullDownRefresh": false,
  49. "navigationBarBackgroundColor": "#FFFFFF",
  50. "disableSwipeBack": true,
  51. "app-plus": {
  52. "popGesture": "none"
  53. }
  54. }
  55. },
  56. {
  57. "path": "pages/userMeal/index",
  58. "style" :
  59. {
  60. "navigationBarTitleText": "我的套餐",
  61. "enablePullDownRefresh": false,
  62. "navigationBarBackgroundColor": "#FFFFFF",
  63. "disableSwipeBack": true,
  64. "app-plus": {
  65. "popGesture": "none"
  66. }
  67. }
  68. },
  69. {
  70. "path": "pages/userMeal/userMealDetail/index",
  71. "style" :
  72. {
  73. "navigationBarTitleText": "我的套餐详情",
  74. "enablePullDownRefresh": false,
  75. "navigationBarBackgroundColor": "#FFFFFF"
  76. }
  77. },
  78. {
  79. "path": "pages/maintenance/index",
  80. "style" :
  81. {
  82. "navigationBarTitleText": "维修保养",
  83. "enablePullDownRefresh": false,
  84. "navigationBarBackgroundColor": "#FFFFFF",
  85. "disableSwipeBack": true,
  86. "app-plus": {
  87. "popGesture": "none"
  88. }
  89. }
  90. },
  91. {
  92. "path": "pages/maintenance/maintainOrder/flow/index",
  93. "style" :
  94. {
  95. "navigationBarTitleText": "流程细明",
  96. "enablePullDownRefresh": false,
  97. "navigationBarBackgroundColor": "#FFFFFF"
  98. }
  99. },
  100. {
  101. "path": "pages/maintenance/maintainOrder/index",
  102. "style" :
  103. {
  104. "navigationBarTitleText": "维修保养订单",
  105. "enablePullDownRefresh": false,
  106. "navigationBarBackgroundColor": "#FFFFFF",
  107. "disableSwipeBack": true,
  108. "app-plus": {
  109. "popGesture": "none"
  110. }
  111. }
  112. },
  113. {
  114. "path": "pages/maintenance/maintainOrder/orderDetail/index",
  115. "style" :
  116. {
  117. "navigationBarTitleText": "订单详情",
  118. "enablePullDownRefresh": false,
  119. "navigationBarBackgroundColor": "#FFFFFF",
  120. "navigationBarTextStyle": "white",
  121. "navigationStyle":"custom",
  122. "app-plus":{
  123. "titleNView":false
  124. }
  125. }
  126. },
  127. {
  128. "path": "pages/maintenance/maintainOrder/deliveryOfVehicle/index",
  129. "style" :
  130. {
  131. "navigationBarTitleText": "提车确认",
  132. "enablePullDownRefresh": false,
  133. "navigationBarBackgroundColor": "#FFFFFF"
  134. }
  135. },
  136. {
  137. "path": "pages/preCarWash/chooseTime/index",
  138. "style" :
  139. {
  140. "navigationBarTitleText": "选择预约时间",
  141. "enablePullDownRefresh": false,
  142. "navigationBarBackgroundColor": "#FFFFFF"
  143. }
  144. },
  145. {
  146. "path": "pages/preCarWash/chooseShop/index",
  147. "style" :
  148. {
  149. "navigationBarTitleText": "选择门店",
  150. "enablePullDownRefresh": false,
  151. "navigationBarBackgroundColor": "#FFFFFF"
  152. }
  153. },
  154. {
  155. "path": "pages/preCarWash/chooseCar/index",
  156. "style" :
  157. {
  158. "navigationBarTitleText": "选择车辆",
  159. "enablePullDownRefresh": false,
  160. "navigationBarBackgroundColor": "#FFFFFF"
  161. }
  162. },
  163. {
  164. "path": "pages/preCarWash/setMeal/index",
  165. "style" :
  166. {
  167. "navigationBarTitleText": "选择套餐",
  168. "enablePullDownRefresh": false,
  169. "navigationBarBackgroundColor": "#FFFFFF"
  170. }
  171. },
  172. {
  173. "path": "pages/preCarWash/washOrder/index",
  174. "style" :
  175. {
  176. "navigationBarTitleText": "洗车订单",
  177. "enablePullDownRefresh": false,
  178. "navigationBarBackgroundColor": "#FFFFFF",
  179. "disableSwipeBack": true,
  180. "app-plus": {
  181. "popGesture": "none"
  182. }
  183. }
  184. },
  185. {
  186. "path": "pages/preCarWash/washOrder/serviceEvaluation/index",
  187. "style" :
  188. {
  189. "navigationBarTitleText": "服务评价",
  190. "enablePullDownRefresh": false,
  191. "navigationBarBackgroundColor": "#FFFFFF"
  192. }
  193. },
  194. {
  195. "path": "pages/preCarWash/washOrder/orderDetail/index",
  196. "style" :
  197. {
  198. "navigationBarTitleText": "订单详情",
  199. "enablePullDownRefresh": false,
  200. "navigationBarBackgroundColor": "#FFFFFF",
  201. "navigationBarTextStyle": "white",
  202. "navigationStyle":"custom",
  203. "app-plus":{
  204. "titleNView":false
  205. }
  206. }
  207. },
  208. {
  209. "path": "pages/maintenance/onlineReservation/index",
  210. "style" :
  211. {
  212. "navigationBarTitleText": "在线预约",
  213. "enablePullDownRefresh": false,
  214. "navigationBarBackgroundColor": "#FFFFFF"
  215. }
  216. },
  217. {
  218. "path": "pages/maintenance/servicesAvailable/index",
  219. "style" :
  220. {
  221. "navigationBarTitleText": "服务项目",
  222. "enablePullDownRefresh": false,
  223. "navigationBarBackgroundColor": "#FFFFFF"
  224. }
  225. },
  226. {
  227. "path": "pages/maintenance/evaluate/index",
  228. "style" :
  229. {
  230. "navigationBarTitleText": "维修估价",
  231. "enablePullDownRefresh": false,
  232. "navigationBarBackgroundColor": "#FFFFFF"
  233. }
  234. },
  235. {
  236. "path": "pages/maintenance/evaluate/history/index",
  237. "style" :
  238. {
  239. "navigationBarTitleText": "历史估价记录",
  240. "enablePullDownRefresh": false,
  241. "navigationBarBackgroundColor": "#FFFFFF"
  242. }
  243. },
  244. {
  245. "path": "pages/maintenance/evaluate/history/detail",
  246. "style" :
  247. {
  248. "navigationBarTitleText": "评估详情",
  249. "enablePullDownRefresh": false,
  250. "navigationBarBackgroundColor": "#FFFFFF"
  251. }
  252. },
  253. {
  254. "path": "pages/maintenance/setMeal/index",
  255. "style" :
  256. {
  257. "navigationBarTitleText": "套餐服务",
  258. "enablePullDownRefresh": false,
  259. "navigationBarBackgroundColor": "#FFFFFF"
  260. }
  261. },
  262. {
  263. "path": "pages/maintenance/setMeal/buySetMeal/index",
  264. "style" :
  265. {
  266. "navigationBarTitleText": "购买套餐",
  267. "enablePullDownRefresh": false,
  268. "navigationBarBackgroundColor": "#FFFFFF"
  269. }
  270. },
  271. {
  272. "path": "pages/maintenance/setMeal/setMealDetail/index",
  273. "style" :
  274. {
  275. "navigationBarTitleText": "套餐详情",
  276. "enablePullDownRefresh": false,
  277. "navigationBarBackgroundColor": "#FFFFFF",
  278. "disableSwipeBack": true
  279. }
  280. },
  281. {
  282. "path": "pages/shop/shopDetail/index",
  283. "style" :
  284. {
  285. "navigationBarTitleText": "店铺详情",
  286. "enablePullDownRefresh": false,
  287. "navigationBarBackgroundColor": "#FFFFFF",
  288. "navigationBarTextStyle": "white",
  289. "navigationStyle":"custom",
  290. "app-plus":{
  291. "titleNView":false
  292. }
  293. }
  294. },
  295. {
  296. "path": "pages/shop/shopDetail/shopPhotoAlbum/index",
  297. "style" :
  298. {
  299. "navigationBarTitleText": "门店相册",
  300. "enablePullDownRefresh": false,
  301. "navigationBarBackgroundColor": "#FFFFFF"
  302. }
  303. }
  304. ,{
  305. "path" : "pages/maintenance/expensesList/expensesList",
  306. "style" :
  307. {
  308. "navigationBarTitleText": "费用清单",
  309. "enablePullDownRefresh": false,
  310. "navigationBarBackgroundColor": "#FFFFFF",
  311. "app-plus": {
  312. "popGesture": "none"
  313. }
  314. }
  315. }
  316. ,{
  317. "path" : "pages/shop/shopDetail/ShopInclude/ShopInclude",
  318. "style" :
  319. {
  320. "navigationBarTitleText": "店铺介绍",
  321. "enablePullDownRefresh": false
  322. }
  323. }
  324. ,{
  325. "path" : "pages/maintenance/agreement/agreement",
  326. "style" :
  327. {
  328. "enablePullDownRefresh": false,
  329. "navigationBarBackgroundColor": "#FFFFFF"
  330. }
  331. }
  332. ,{
  333. "path" : "pages/shop/navigation/navigation",
  334. "style" :
  335. {
  336. "navigationBarTitleText": "店铺导航",
  337. "enablePullDownRefresh": false
  338. }
  339. }
  340. ,{
  341. "path" : "pages/shop/cashierDesk/cashierDesk",
  342. "style" :
  343. {
  344. "navigationBarTitleText": "收银台",
  345. "enablePullDownRefresh": false
  346. }
  347. }
  348. ],
  349. "globalStyle": {
  350. "navigationBarTextStyle": "black",
  351. "navigationBarTitleText": "uni-app",
  352. "navigationBarBackgroundColor": "#F8F8F8",
  353. "backgroundColor": "#F8F8F8",
  354. "enablePullDownRefresh":false
  355. },
  356. "tabBar": {
  357. "color": "#666666",
  358. "selectedColor": "#333333",
  359. "borderStyle": "black",
  360. "backgroundColor": "#FFFFFF",
  361. "height": "50px",
  362. "fontSize": "10px",
  363. "iconWidth": "24px",
  364. "spacing": "3px",
  365. "list": [{
  366. "pagePath": "pages/home/index",
  367. "text": "首页"
  368. },
  369. {
  370. "pagePath": "pages/shop/CarsClass/index",
  371. "text": "买车"
  372. },
  373. {
  374. "pagePath": "pages/shop/LeaseCarClass/index",
  375. "text": "租车"
  376. },
  377. {
  378. "pagePath": "pages/shop/ShoppingMall/index",
  379. "text": "商城"
  380. },
  381. {
  382. "pagePath": "pages/user/User/index",
  383. "text": "我的"
  384. }
  385. ]
  386. }
  387. }