pages.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "填写爱车信息"
  7. }
  8. },
  9. {
  10. "path": "pages/shop/shopList",
  11. "style": {
  12. "navigationBarTitleText": "4S门店"
  13. }
  14. },
  15. {
  16. "path": "pages/me/me",
  17. "style": {
  18. "navigationBarTitleText": "",
  19. "navigationBarBackgroundColor": "#FFEDEA"
  20. }
  21. },
  22. {
  23. "path": "pages/login/login",
  24. "style": {
  25. "navigationStyle": "custom"
  26. }
  27. },
  28. {
  29. "path": "pages/login/empower",
  30. "style": {
  31. "navigationBarTitleText": "天下养车"
  32. }
  33. },
  34. {
  35. "path": "pages/login/iphoneLogin",
  36. "style": {
  37. "navigationBarTitleText": "",
  38. "navigationBarBackgroundColor": "#FFFFFF"
  39. }
  40. }
  41. , {
  42. "path": "pages/index/addCar",
  43. "style": {
  44. "navigationBarTitleText": "添加爱车",
  45. "enablePullDownRefresh": false
  46. }
  47. },
  48. {
  49. "path": "pages/index/cailist",
  50. "style": {
  51. "navigationBarTitleText": "我的车库",
  52. "navigationBarBackgroundColor": "#FFFFFF"
  53. }
  54. },
  55. {
  56. "path": "pages/index/carModel",
  57. "style": {
  58. // "navigationBarTitleText": "自主选车",
  59. // "navigationBarBackgroundColor": "#FFFFFF"
  60. "navigationStyle": "custom"
  61. }
  62. },
  63. {
  64. "path": "pages/me/setup",
  65. "style": {
  66. "navigationBarTitleText": "账号设置",
  67. "navigationBarBackgroundColor":"#FFFFFF"
  68. }
  69. },
  70. {
  71. "path": "pages/iPhone/phoneList",
  72. "style": {
  73. "navigationBarTitleText": "联系人管理"
  74. }
  75. },
  76. {
  77. "path": "pages/iPhone/addphone",
  78. "style": {
  79. "navigationBarTitleText": "新增联系人"
  80. }
  81. },
  82. {
  83. "path" : "pages/me/treaty",
  84. "style" :
  85. {
  86. "navigationBarTitleText": "服务协议",
  87. "enablePullDownRefresh": false
  88. }
  89. }
  90. ,{
  91. "path" : "pages/me/intimity",
  92. "style" :
  93. {
  94. "navigationBarTitleText": "隐私政策",
  95. "enablePullDownRefresh": false
  96. }
  97. },
  98. {
  99. "path": "pages/order/myorder",
  100. "style": {
  101. "navigationBarTitleText": "我的订单",
  102. "navigationBarBackgroundColor":"#FFFFFF",
  103. "enablePullDownRefresh": true
  104. }
  105. },
  106. {
  107. "path": "pages/order/orderDetail",
  108. "style": {
  109. "navigationStyle": "custom",
  110. "enablePullDownRefresh": true
  111. }
  112. },
  113. {
  114. "path": "pages/order/evaluate",
  115. "style": {
  116. "navigationBarTitleText": "评价"
  117. }
  118. }
  119. ],
  120. "tabBar": {
  121. "color": "#8a8a8a",
  122. "selectedColor": "#FF4F00",
  123. "borderStyle": "black",
  124. "backgroundColor": "#ffffff",
  125. "list": [{
  126. "pagePath": "pages/index/index",
  127. "iconPath": "static/img/tabme1.png",
  128. "selectedIconPath": "static/img/tabme2.png",
  129. "text": "4S保养"
  130. },
  131. {
  132. "pagePath": "pages/shop/shopList",
  133. "iconPath": "static/img/tabshop1.png",
  134. "selectedIconPath": "static/img/tabshop2.png",
  135. "text": "4S门店"
  136. },
  137. {
  138. "pagePath": "pages/me/me",
  139. "iconPath": "static/img/tabme1.png",
  140. "selectedIconPath": "static/img/tabme2.png",
  141. "text": "我的"
  142. }
  143. ]
  144. },
  145. "globalStyle": {
  146. "navigationBarTextStyle": "black",
  147. "navigationBarTitleText": "uni-app",
  148. "navigationBarBackgroundColor": "#F8F8F8",
  149. "backgroundColor": "#F8F8F8"
  150. }
  151. }