pages.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. },
  9. {
  10. "path": "pages/user/user",
  11. "style": {
  12. "navigationBarTitleText": "我的"
  13. }
  14. },
  15. {
  16. "path": "pages/login/login",
  17. "style": {
  18. "navigationBarTitleText": "登录"
  19. }
  20. },
  21. {
  22. "path": "pages/login/user-agreement",
  23. "style": {
  24. "navigationBarTitleText": "隐私协议"
  25. }
  26. },
  27. // 调退货
  28. {
  29. "path": "pages/return/list",
  30. "style": {
  31. "navigationBarTitleText": "订单管理"
  32. }
  33. },
  34. {
  35. "path": "pages/return/returnDetail",
  36. "style": {
  37. "navigationBarTitleText": "退货详情"
  38. }
  39. },
  40. // 批发商退差价
  41. {
  42. "path" : "pages/CustomerReturnPay/returnedInfo",
  43. "style" :
  44. {
  45. "navigationBarTitleText": "退差价单明细",
  46. "enablePullDownRefresh": false
  47. }
  48. },
  49. {
  50. "path" : "pages/CustomerReturnPay/returnPay",
  51. "style" :
  52. {
  53. "navigationBarTitleText": "差价退还专用订单",
  54. "enablePullDownRefresh": false
  55. }
  56. },
  57. // 肥皂胶带购买
  58. {
  59. "path" : "pages/Buy_soap_tape/goods",
  60. "style" :
  61. {
  62. "navigationBarTitleText": "商品详情",
  63. "enablePullDownRefresh": false
  64. }
  65. },
  66. {
  67. "path" : "pages/Buy_soap_tape/purchase_history",
  68. "style" :
  69. {
  70. "navigationBarTitleText": "购买记录",
  71. "enablePullDownRefresh": false
  72. }
  73. },
  74. {
  75. "path" : "pages/Buy_soap_tape/information",
  76. "style" :
  77. {
  78. "navigationBarTitleText": "购买信息",
  79. "enablePullDownRefresh": false
  80. }
  81. },
  82. {
  83. "path" : "pages/Buy_soap_tape/address",
  84. "style" :
  85. {
  86. "navigationBarTitleText": "收货人地址",
  87. "enablePullDownRefresh": false
  88. }
  89. },
  90. {
  91. "path" : "pages/Buy_soap_tape/address-manage",
  92. "style" :
  93. {
  94. "navigationBarTitleText": "收货地址",
  95. "enablePullDownRefresh": false
  96. }
  97. },
  98. {
  99. "path" : "pages/Buy_soap_tape/orderPlacer",
  100. "style" :
  101. {
  102. "navigationBarTitleText": "下单人",
  103. "enablePullDownRefresh": false
  104. }
  105. },
  106. {
  107. "path": "pages/Buy_soap_tape/phone-area",
  108. "style": {
  109. "navigationBarTitleText": "选择国家/地区"
  110. }
  111. },
  112. {
  113. "path": "pages/Buy_soap_tape/orderDetail",
  114. "style": {
  115. "navigationBarTitleText": "订单详情"
  116. }
  117. },
  118. {
  119. "path": "pages/Buy_soap_tape/pay-status",
  120. "style": {
  121. "navigationBarTitleText": "下单成功"
  122. }
  123. }
  124. ],
  125. "tabBar": {
  126. "color": "#333",
  127. "selectedColor": "#EA4A41",
  128. "list": [{
  129. "pagePath": "pages/index/index",
  130. "iconPath": "static/index/index.png",
  131. "selectedIconPath": "static/index/index-a.png",
  132. "text": "首页"
  133. },
  134. {
  135. "pagePath": "pages/user/user",
  136. "iconPath": "static/index/user.png",
  137. "selectedIconPath": "static/index/user-a.png",
  138. "text": "我的"
  139. }
  140. ]
  141. },
  142. "globalStyle": {
  143. "app-plus": {
  144. "titleNView": false //禁用原生导航栏
  145. },
  146. "navigationBarTextStyle": "black",
  147. "navigationBarTitleText": "uni-app",
  148. "navigationBarBackgroundColor": "#F8F8F8",
  149. "backgroundColor": "#F8F8F8"
  150. }
  151. }