pages.json 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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/index/index", // 首页
  8. "style": {
  9. "navigationBarTitleText": "乐色商城",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "pages/goods/index", // 商城
  15. "style": {
  16. "navigationBarTitleText": "乐色商城",
  17. "enablePullDownRefresh": false
  18. }
  19. },
  20. {
  21. "path": "pages/login/login",
  22. "style": {
  23. "navigationBarTitleText": "授权登录"
  24. }
  25. },
  26. {
  27. "path": "pages/login/phoneLogin",
  28. "style": {
  29. "navigationBarTitleText": "手机号登录"
  30. }
  31. },
  32. {
  33. "path": "pages/userCenter/index",
  34. "style": {
  35. "navigationBarTitleText": "个人中心",
  36. "navigationBarBackgroundColor": "#01c9b2",
  37. "navigationBarTextStyle": "white"
  38. }
  39. },
  40. {
  41. "path": "pages/userCenter/userInfo/userInfo",
  42. "style": {
  43. "navigationBarTitleText": "个人信息"
  44. }
  45. },
  46. {
  47. "path": "pages/userCenter/userInfo/smsVerification",
  48. "style": {
  49. "navigationBarTitleText": "短信验证"
  50. }
  51. },
  52. {
  53. "path": "pages/userCenter/userInfo/paymentPwd",
  54. "style": {
  55. "navigationBarTitleText": "支付密码"
  56. }
  57. },
  58. {
  59. "path": "pages/userCenter/userInfo/changePayPwd",
  60. "style": {
  61. "navigationBarTitleText": "修改支付密码"
  62. }
  63. },
  64. {
  65. "path": "pages/userCenter/aboutUs",
  66. "style": {
  67. "navigationBarTitleText": "关于我们"
  68. }
  69. },
  70. {
  71. "path": "pages/userCenter/liucheng",
  72. "style": {
  73. "navigationBarTitleText": "投递流程"
  74. }
  75. },
  76. {
  77. "path": "pages/userCenter/zhinan",
  78. "style": {
  79. "navigationBarTitleText": "分类指南"
  80. }
  81. },
  82. {
  83. "path": "pages/order/order",
  84. "style": {
  85. "navigationBarTitleText": "我的订单"
  86. }
  87. }, {
  88. "path": "pages/order/orderDetail",
  89. "style": {
  90. "navigationBarTitleText": "订单详情"
  91. }
  92. },
  93. {
  94. "path": "pages/order/LogList",
  95. "style": {
  96. "navigationBarTitleText": "物流信息"
  97. }
  98. },
  99. {
  100. "path": "pages/agreement/agreement",
  101. "style": {
  102. "navigationBarTitleText": "注意事项及服务协议"
  103. }
  104. }
  105. ,{
  106. "path" : "pages/cart/cart",
  107. "style" :
  108. {
  109. "navigationBarTitleText": "购物车",
  110. "enablePullDownRefresh": false
  111. }
  112. }
  113. ,{
  114. "path" : "pages/toOrder/index",
  115. "style" :
  116. {
  117. "navigationBarTitleText": "提交订单",
  118. "enablePullDownRefresh": false
  119. }
  120. }
  121. ,{
  122. "path" : "pages/toOrder/editAddress",
  123. "style" :
  124. {
  125. "navigationBarTitleText": "修改地址",
  126. "enablePullDownRefresh": false
  127. }
  128. }
  129. ,{
  130. "path" : "pages/goods/goods",
  131. "style" :
  132. {
  133. "navigationBarTitleText": "商品",
  134. "enablePullDownRefresh": false
  135. }
  136. },
  137. {
  138. "path" : "pages/goods/goodsDetail",
  139. "style" :
  140. {
  141. "navigationBarTitleText": "商品详情",
  142. "enablePullDownRefresh": false
  143. }
  144. }
  145. ,{
  146. "path" : "pages/store/store",
  147. "style" :
  148. {
  149. "navigationBarTitleText": "网点详情",
  150. "enablePullDownRefresh": false
  151. }
  152. },
  153. {
  154. "path" : "pages/checkOut/checkOut",
  155. "style" :
  156. {
  157. "navigationBarTitleText": "核销",
  158. "enablePullDownRefresh": false
  159. }
  160. }
  161. ],
  162. "globalStyle": {
  163. "navigationBarTextStyle": "black",
  164. "navigationBarTitleText": "uni-app",
  165. "navigationBarBackgroundColor": "#FFFFFF",
  166. "backgroundColor": "#f2f2f2",
  167. "app-plus": {
  168. // 将回弹属性关掉
  169. "bounce": "none",
  170. "scrollIndicator": "none"
  171. }
  172. },
  173. "tabBar": {
  174. "color": "#7A7E83",
  175. "selectedColor": "#01c9b2",
  176. "backgroundColor": "#ffffff",
  177. "fontSize": "14px",
  178. "list": [
  179. {
  180. "pagePath": "pages/index/index",
  181. "iconPath": "static/tabbar/home.png",
  182. "selectedIconPath": "static/tabbar/home-active.png",
  183. "text": "首页"
  184. },
  185. {
  186. "pagePath": "pages/goods/index",
  187. "iconPath": "static/tabbar/shop.png",
  188. "selectedIconPath": "static/tabbar/shop-active.png",
  189. "text": "商城"
  190. },
  191. {
  192. "pagePath": "pages/userCenter/index",
  193. "iconPath": "static/tabbar/user.png",
  194. "selectedIconPath": "static/tabbar/user-active.png",
  195. "text": "我的"
  196. }]
  197. }
  198. }