pages.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/login/login",
  8. "style": {
  9. "navigationBarTitleText": "",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationBarTitleText": ""
  17. }
  18. },
  19. {
  20. "path": "pages/orderMeal/index",
  21. "style": {
  22. "navigationBarTitleText": "点单"
  23. }
  24. },
  25. {
  26. "path": "pages/qrCode/index",
  27. "style": {
  28. "navigationStyle": "custom"
  29. }
  30. },
  31. {
  32. "path": "pages/order/index",
  33. "style": {
  34. "navigationBarTitleText": "订单"
  35. }
  36. },
  37. {
  38. "path": "pages/my/index",
  39. "style": {
  40. "navigationBarTitleText": "我的"
  41. }
  42. }
  43. ],
  44. "subPackages": [
  45. {
  46. "root": "loginPages",
  47. "pages": [
  48. {
  49. "path": "login/bind-account",
  50. "style": {
  51. "navigationBarTitleText": "账号绑定",
  52. "enablePullDownRefresh": false
  53. }
  54. },
  55. {
  56. "path": "login/bind-account-password",
  57. "style": {
  58. "navigationBarTitleText": "绑定账号密码",
  59. "enablePullDownRefresh": false
  60. }
  61. },
  62. {
  63. "path": "login/bind-transaction-password",
  64. "style": {
  65. "navigationBarTitleText": "绑定账号支付密码",
  66. "enablePullDownRefresh": false
  67. }
  68. },
  69. {
  70. "path": "login/login-old-account",
  71. "style": {
  72. "navigationBarTitleText": "输入账号密码",
  73. "enablePullDownRefresh": false
  74. }
  75. },
  76. {
  77. "path": "login/login-real-name-auth",
  78. "style": {
  79. "navigationBarTitleText": "实名认证",
  80. "enablePullDownRefresh": false
  81. }
  82. },
  83. {
  84. "path": "login/retrieve-account",
  85. "style": {
  86. "navigationBarTitleText": "账号密码找回",
  87. "enablePullDownRefresh": false
  88. }
  89. },
  90. {
  91. "path": "login/retrieve-account-password",
  92. "style": {
  93. "navigationBarTitleText": "账号密码找回",
  94. "enablePullDownRefresh": false
  95. }
  96. },
  97. {
  98. "path": "login/retrieve-account-phone",
  99. "style": {
  100. "navigationBarTitleText": "账号找回",
  101. "enablePullDownRefresh": false
  102. }
  103. },
  104. {
  105. "path": "login/retrieve-method",
  106. "style": {
  107. "navigationBarTitleText": "账号找回方式",
  108. "enablePullDownRefresh": false
  109. }
  110. }
  111. ]
  112. },
  113. {
  114. "root": "otherPages",
  115. "pages": [
  116. {
  117. "path": "order/index",
  118. "style": {
  119. "navigationBarTitleText": "订单",
  120. "enablePullDownRefresh": false,
  121. "navigationStyle": "custom"
  122. }
  123. },
  124. {
  125. "path": "orderDetail/index",
  126. "style": {
  127. "navigationBarTitleText": "订单详情",
  128. "enablePullDownRefresh": false
  129. }
  130. },
  131. {
  132. "path": "storeService/index",
  133. "style": {
  134. "navigationBarTitleText": "到店服务",
  135. "enablePullDownRefresh": false
  136. }
  137. },
  138. {
  139. "path": "serviceItems/index",
  140. "style": {
  141. "navigationBarTitleText": "选择服务项目",
  142. "enablePullDownRefresh": false
  143. }
  144. },
  145. {
  146. "path": "bookService/index",
  147. "style": {
  148. "navigationBarTitleText": "预约服务",
  149. "enablePullDownRefresh": false
  150. }
  151. }
  152. ]
  153. },
  154. {
  155. "root": "myPages",
  156. "pages": [
  157. {
  158. "path": "recharge/index",
  159. "style": {
  160. "navigationBarTitleText": "储值服务",
  161. "enablePullDownRefresh": false
  162. }
  163. },
  164. {
  165. "path": "coupon/index",
  166. "style": {
  167. "navigationBarTitleText": "优惠券",
  168. "enablePullDownRefresh": false
  169. }
  170. }
  171. ]
  172. },
  173. {
  174. "root": "storePages",
  175. "pages": [
  176. {
  177. "path": "store/store-choose",
  178. "style": {
  179. "navigationBarTitleText": "选择门店",
  180. "enablePullDownRefresh": false
  181. }
  182. }
  183. ]
  184. }
  185. ],
  186. "tabBar": {
  187. "color": "#282828",
  188. "selectedColor": "#B22338",
  189. "borderStyle": "white",
  190. "backgroundColor": "#ffffff",
  191. "list": [
  192. {
  193. "pagePath": "pages/index/index"
  194. },
  195. {
  196. "pagePath": "pages/orderMeal/index"
  197. },
  198. {
  199. "pagePath": "pages/qrCode/index"
  200. },
  201. {
  202. "pagePath": "pages/order/index"
  203. },
  204. {
  205. "pagePath": "pages/my/index"
  206. }
  207. ]
  208. },
  209. "globalStyle": {
  210. "navigationBarTextStyle": "black",
  211. "navigationBarTitleText": "加载中",
  212. "navigationBarBackgroundColor": "#FFE05C",
  213. "backgroundColor": "#FFE05C",
  214. "titleNView": false
  215. },
  216. "uniIdRouter": {}
  217. }