pages.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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": "storeService/index",
  126. "style": {
  127. "navigationBarTitleText": "到店服务",
  128. "enablePullDownRefresh": false
  129. }
  130. }
  131. ]
  132. },
  133. {
  134. "root": "myPages",
  135. "pages": [
  136. {
  137. "path": "transactionRecord/index",
  138. "style": {
  139. "navigationBarTitleText": "交易记录",
  140. "enablePullDownRefresh": false
  141. }
  142. },
  143. {
  144. "path": "recharge/index",
  145. "style": {
  146. "navigationBarTitleText": "储值服务",
  147. "enablePullDownRefresh": false
  148. }
  149. },
  150. {
  151. "path": "coupon/index",
  152. "style": {
  153. "navigationBarTitleText": "优惠券",
  154. "enablePullDownRefresh": false
  155. }
  156. }
  157. ]
  158. },
  159. {
  160. "root": "storePages",
  161. "pages": [
  162. {
  163. "path": "store/store-choose",
  164. "style": {
  165. "navigationBarTitleText": "选择门店",
  166. "enablePullDownRefresh": false
  167. }
  168. }
  169. ]
  170. }
  171. ],
  172. "tabBar": {
  173. "color": "#282828",
  174. "selectedColor": "#B22338",
  175. "borderStyle": "white",
  176. "backgroundColor": "#ffffff",
  177. "list": [
  178. {
  179. "pagePath": "pages/index/index"
  180. },
  181. {
  182. "pagePath": "pages/orderMeal/index"
  183. },
  184. {
  185. "pagePath": "pages/qrCode/index"
  186. },
  187. {
  188. "pagePath": "pages/order/index"
  189. },
  190. {
  191. "pagePath": "pages/my/index"
  192. }
  193. ]
  194. },
  195. "globalStyle": {
  196. "navigationBarTextStyle": "black",
  197. "navigationBarTitleText": "加载中",
  198. "navigationBarBackgroundColor": "#FFE05C",
  199. "backgroundColor": "#FFE05C",
  200. "titleNView": false
  201. },
  202. "uniIdRouter": {}
  203. }