pages.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/tabBar/home/home",
  5. "style": {
  6. "navigationBarTitleText": "采美采购商城",
  7. "enablePullDownRefresh":true
  8. }
  9. },
  10. {
  11. "path": "pages/tabBar/cart/cart",
  12. "style": {
  13. "navigationBarTitleText": "购物车",
  14. "enablePullDownRefresh":true
  15. }
  16. },
  17. {
  18. "path": "pages/tabBar/user/user",
  19. "style": {
  20. "navigationBarTitleText": "我的",
  21. "enablePullDownRefresh" : true
  22. }
  23. },
  24. {
  25. "path": "pages/login/login",
  26. "style": {
  27. "navigationBarTitleText": "登录"
  28. }
  29. },
  30. {
  31. "path": "pages/user/account/account",
  32. "style": {
  33. "navigationBarTitleText": "账户余额明细",
  34. "enablePullDownRefresh" : true
  35. }
  36. },
  37. {
  38. "path": "pages/user/address/addressManage",
  39. "style": {
  40. "navigationBarTitleText": "添加新地址"
  41. }
  42. },
  43. {
  44. "path": "pages/user/address/address",
  45. "style": {
  46. "navigationBarTitleText": "地址列表"
  47. }
  48. },
  49. {
  50. "path": "pages/user/about/about",
  51. "style": {
  52. "navigationBarTitleText": "关于我们"
  53. }
  54. },
  55. {
  56. "path": "pages/goods/goods",
  57. "style": {
  58. "navigationBarTitleText": "商品列表"
  59. }
  60. },
  61. {
  62. "path": "pages/goods/product",
  63. "style": {
  64. "navigationBarTitleText": "商品详情",
  65. "navigationStyle":"custom"
  66. }
  67. },
  68. {
  69. "path": "pages/user/order/order-cashier",
  70. "style": {
  71. "navigationBarTitleText": "收银台",
  72. "navigationStyle":"custom"
  73. }
  74. },
  75. {
  76. "path": "pages/service/aftersale",
  77. "style": {
  78. "navigationBarTitleText": "售后无忧"
  79. }
  80. },
  81. {
  82. "path": "pages/service/shoppingnotice",
  83. "style": {
  84. "navigationBarTitleText": "购物须知"
  85. }
  86. },
  87. {
  88. "path": "pages/service/member",
  89. "style": {
  90. "navigationBarTitleText": "正品联盟"
  91. }
  92. }
  93. ,{
  94. "path" : "pages/user/invoice/invoice",
  95. "style" : {
  96. "navigationBarTitleText": "发票信息"
  97. }
  98. }
  99. ,{
  100. "path" : "pages/user/regularPurchase/regularPurchase",
  101. "style" : {
  102. "navigationBarTitleText": "常采购商品"
  103. }
  104. },
  105. {
  106. "path": "pages/user/order/create-order",
  107. "style": {
  108. "navigationBarTitleText": "确认订单"
  109. }
  110. },
  111. {
  112. "path": "pages/user/order/orderShareLogin",
  113. "style": {
  114. "navigationBarTitleText": "订单详情"
  115. }
  116. },
  117. {
  118. "path": "pages/user/order/myOrder",
  119. "style": {
  120. "navigationBarTitleText": "我的订单",
  121. // "enablePullDownRefresh": true,
  122. "onReachBottomDistance": 50,
  123. "navigationStyle":"custom"
  124. }
  125. },
  126. {
  127. "path": "pages/user/order/order-list",
  128. "style": {
  129. "navigationBarTitleText": "我的订单",
  130. // "enablePullDownRefresh": true,
  131. // "onReachBottomDistance": 50,
  132. "navigationStyle":"custom"
  133. }
  134. },
  135. {
  136. "path": "pages/user/order/order-details",
  137. "style": {
  138. "navigationBarTitleText": "订单详情",
  139. "navigationStyle":"custom"
  140. }
  141. },
  142. {
  143. "path": "pages/user/order/order-sharedetails",
  144. "style": {
  145. "navigationBarTitleText": "订单详情"
  146. }
  147. },
  148. {
  149. "path": "pages/user/order/order-logistics",
  150. "style": {
  151. "navigationBarTitleText": "物流信息"
  152. }
  153. }
  154. ],
  155. "tabBar": {
  156. "height":"80",
  157. "color": "#999999",
  158. "selectedColor": "#E15616",
  159. "borderStyle": "black",
  160. "backgroundColor": "#ffffff",
  161. "list": [{
  162. "pagePath": "pages/tabBar/home/home",
  163. "iconPath": "static/home@3x.png",
  164. "selectedIconPath": "static/home-current@3x.png",
  165. "text": "商城"
  166. },
  167. {
  168. "pagePath": "pages/tabBar/cart/cart",
  169. "iconPath": "static/cart@3x.png",
  170. "selectedIconPath": "static/cart-current@3x.png",
  171. "text": "购物车"
  172. },
  173. {
  174. "pagePath": "pages/tabBar/user/user",
  175. "iconPath": "static/user@3x.png",
  176. "selectedIconPath": "static/user-current@3x.png",
  177. "text": "我的"
  178. }
  179. ]
  180. },
  181. "globalStyle": {
  182. "navigationBarTextStyle": "black",
  183. "navigationBarTitleText": "采美采购商城",
  184. "navigationBarBackgroundColor": "#FFFFFF",
  185. "backgroundColor": "#FFFFFF"
  186. }
  187. }