pages.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. "root": "loginPages",
  46. "pages": [
  47. {
  48. "path": "login/bind-account",
  49. "style": {
  50. "navigationBarTitleText": "账号绑定",
  51. "enablePullDownRefresh": false
  52. }
  53. }, {
  54. "path": "login/bind-account-password",
  55. "style": {
  56. "navigationBarTitleText": "绑定账号密码",
  57. "enablePullDownRefresh": false
  58. }
  59. }, {
  60. "path": "login/bind-transaction-password",
  61. "style": {
  62. "navigationBarTitleText": "绑定账号支付密码",
  63. "enablePullDownRefresh": false
  64. }
  65. }
  66. , {
  67. "path": "login/login-old-account",
  68. "style": {
  69. "navigationBarTitleText": "输入账号密码",
  70. "enablePullDownRefresh": false
  71. }
  72. }, {
  73. "path": "login/login-real-name-auth",
  74. "style": {
  75. "navigationBarTitleText": "实名认证",
  76. "enablePullDownRefresh": false
  77. }
  78. }, {
  79. "path": "login/retrieve-account",
  80. "style": {
  81. "navigationBarTitleText": "账号密码找回",
  82. "enablePullDownRefresh": false
  83. }
  84. }
  85. , {
  86. "path": "login/retrieve-account-password",
  87. "style": {
  88. "navigationBarTitleText": "账号密码找回",
  89. "enablePullDownRefresh": false
  90. }
  91. } , {
  92. "path": "login/retrieve-account-phone",
  93. "style": {
  94. "navigationBarTitleText": "账号找回",
  95. "enablePullDownRefresh": false
  96. }
  97. }
  98. , {
  99. "path": "login/retrieve-method",
  100. "style": {
  101. "navigationBarTitleText": "账号找回方式",
  102. "enablePullDownRefresh": false
  103. }
  104. }
  105. ]
  106. },
  107. {
  108. "root": "otherPages",
  109. "pages": [{
  110. "path": "order/index",
  111. "style": {
  112. "navigationBarTitleText": "订单",
  113. "enablePullDownRefresh": false,
  114. "navigationStyle": "custom"
  115. }
  116. }]
  117. },
  118. {
  119. "root": "myPages",
  120. "pages": [{
  121. "path": "recharge/index",
  122. "style": {
  123. "navigationBarTitleText": "储值服务",
  124. "enablePullDownRefresh": false
  125. }
  126. },
  127. {
  128. "path": "coupon/index",
  129. "style": {
  130. "navigationBarTitleText": "优惠券",
  131. "enablePullDownRefresh": false
  132. }
  133. }
  134. ]
  135. },
  136. {
  137. "root": "storePages",
  138. "pages": [{
  139. "path": "store/store-choose",
  140. "style": {
  141. "navigationBarTitleText": "选择门店",
  142. "enablePullDownRefresh": false
  143. }
  144. }]
  145. }
  146. ],
  147. "tabBar": {
  148. "color": "#282828",
  149. "selectedColor": "#B22338",
  150. "borderStyle": "white",
  151. "backgroundColor": "#ffffff",
  152. "list": [{
  153. "pagePath": "pages/index/index"
  154. },
  155. {
  156. "pagePath": "pages/orderMeal/index"
  157. },
  158. {
  159. "pagePath": "pages/qrCode/index"
  160. },
  161. {
  162. "pagePath": "pages/order/index"
  163. },
  164. {
  165. "pagePath": "pages/my/index"
  166. }
  167. ]
  168. },
  169. "globalStyle": {
  170. "navigationBarTextStyle": "black",
  171. "navigationBarTitleText": "加载中",
  172. "navigationBarBackgroundColor": "#FFE05C",
  173. "backgroundColor": "#FFE05C",
  174. "titleNView": false
  175. },
  176. "uniIdRouter": {}
  177. }