pages.json 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/login-account",
  5. "style": {
  6. "navigationBarTitleText": "",
  7. "navigationStyle":"custom"
  8. }
  9. },
  10. {
  11. "path": "pages/login/login-share",
  12. "style": {
  13. "navigationBarTitleText": "",
  14. "navigationStyle":"custom"
  15. }
  16. },
  17. {
  18. "path": "pages/login/login-error",
  19. "style": {
  20. "navigationBarTitleText": "",
  21. "navigationStyle":"custom"
  22. }
  23. },
  24. {
  25. "path": "pages/collection/sms",
  26. "style": {
  27. "navigationBarTitleText": "款项识别",
  28. "navigationStyle":"custom"
  29. }
  30. },
  31. {
  32. "path": "pages/collection/nosms",
  33. "style": {
  34. "navigationBarTitleText": "无短信收款",
  35. "enablePullDownRefresh":true,
  36. "navigationStyle":"custom"
  37. }
  38. },
  39. {
  40. "path": "pages/collection/list",
  41. "style": {
  42. "navigationBarTitleText": "收款列表",
  43. "enablePullDownRefresh":true,
  44. "navigationStyle":"custom"
  45. }
  46. },
  47. {
  48. "path": "pages/collection/detail",
  49. "style": {
  50. "navigationBarTitleText": "收款款项详情",
  51. "enablePullDownRefresh":true,
  52. "navigationStyle":"custom"
  53. }
  54. },
  55. {
  56. "path": "pages/relation/ordinary/index",
  57. "style": {
  58. "navigationBarTitleText": "订单款关联",
  59. "enablePullDownRefresh":true,
  60. "navigationStyle":"custom"
  61. }
  62. },
  63. {
  64. "path": "pages/relation/ordinary/examine-detail",
  65. "style": {
  66. "navigationBarTitleText": "审核详情",
  67. "enablePullDownRefresh":true,
  68. "navigationStyle":"custom"
  69. }
  70. },
  71. {
  72. "path": "pages/relation/ordinary/detail",
  73. "style": {
  74. "navigationBarTitleText": "审核通过",
  75. "enablePullDownRefresh":true,
  76. "navigationStyle":"custom"
  77. }
  78. },
  79. {
  80. "path": "pages/relation/nonorder/detail",
  81. "style": {
  82. "navigationBarTitleText": "非订单详情",
  83. "enablePullDownRefresh":true,
  84. "navigationStyle":"custom"
  85. }
  86. },
  87. {
  88. "path": "pages/relation/return/index",
  89. "style": {
  90. "navigationBarTitleText": "返佣款关联",
  91. "enablePullDownRefresh":true,
  92. "navigationStyle":"custom"
  93. }
  94. },
  95. {
  96. "path": "pages/relation/return/detail",
  97. "style": {
  98. "navigationBarTitleText": "返佣详情",
  99. "enablePullDownRefresh":true,
  100. "navigationStyle":"custom"
  101. }
  102. },
  103. {
  104. "path": "pages/relation/return/list",
  105. "style": {
  106. "navigationBarTitleText": "口头返佣关联",
  107. "enablePullDownRefresh":true,
  108. "navigationStyle":"custom"
  109. }
  110. },
  111. {
  112. "path": "pages/relation/refund/index",
  113. "style": {
  114. "navigationBarTitleText": "供应商退款关联",
  115. "enablePullDownRefresh":true,
  116. "navigationStyle":"custom"
  117. }
  118. },
  119. {
  120. "path": "pages/relation/refund/detail",
  121. "style": {
  122. "navigationBarTitleText": "供应商退款详情",
  123. "enablePullDownRefresh":true,
  124. "navigationStyle":"custom"
  125. }
  126. },
  127. {
  128. "path": "pages/relation/order/detail",
  129. "style": {
  130. "navigationBarTitleText": "子订单详情",
  131. "enablePullDownRefresh":true,
  132. "navigationStyle":"custom"
  133. }
  134. },
  135. {
  136. "path": "pages/tabBar/user/mine",
  137. "style": {
  138. "navigationBarTitleText": "店铺",
  139. "navigationStyle":"custom"
  140. }
  141. },{
  142. "path": "pages/tabBar/order/index",
  143. "style": {
  144. "navigationBarTitleText": "订单",
  145. "enablePullDownRefresh" : true,
  146. "navigationStyle":"custom"
  147. }
  148. },{
  149. "path": "pages/tabBar/product/index",
  150. "style": {
  151. "navigationBarTitleText": "",
  152. "enablePullDownRefresh":true,
  153. "navigationStyle":"custom"
  154. }
  155. }
  156. ],
  157. "subPackages": [],
  158. "tabBar": {
  159. "height":"80",
  160. "color": "#C6C6C6",
  161. "selectedColor": "#4688fa",
  162. "borderStyle": "black",
  163. "backgroundColor": "#ffffff",
  164. "list": [{
  165. "pagePath": "pages/tabBar/order/index",
  166. "iconPath": "static/icon-order@2x.png",
  167. "selectedIconPath": "static/icon-order-active@2x.png",
  168. "text": "订单"
  169. },{
  170. "pagePath": "pages/tabBar/product/index",
  171. "iconPath": "static/icon-product@2x.png",
  172. "selectedIconPath": "static/icon-product-active@2x.png",
  173. "text": "商品"
  174. },{
  175. "pagePath": "pages/tabBar/user/mine",
  176. "iconPath": "static/icon-shop@2x.png",
  177. "selectedIconPath": "static/icon-shop-active@2x.png",
  178. "text": "店铺"
  179. }
  180. ]
  181. },
  182. "easycom": {
  183. "autoscan": true,
  184. "custom": {
  185. "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
  186. }
  187. },
  188. "globalStyle": {
  189. "navigationBarTextStyle": "black",
  190. "navigationBarTitleText": "采美CRM系统",
  191. "navigationBarBackgroundColor": "#FFFFFF",
  192. "backgroundColor": "#FFFFFF"
  193. },
  194. "condition" : { //模式配置,仅开发期间生效
  195. "current": 0, //当前激活的模式(list 的索引项)
  196. "list": [
  197. {
  198. "name": "", //模式名称
  199. "path": "", //启动页面,必选
  200. "query": "" //启动参数,在页面的onLoad函数里面得到
  201. }
  202. ]
  203. }
  204. }