pages.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. "enablePullDownRefresh": true
  10. }
  11. },
  12. {
  13. "path": "pages/gen/index",//个人资料
  14. "style":{
  15. "enablePullDownRefresh": true
  16. }
  17. },
  18. {
  19. "path": "pages/service/index",//客服
  20. "style":{
  21. "enablePullDownRefresh": true
  22. }
  23. },
  24. {
  25. "path": "pages/mine/index",//个人中心
  26. "style":{
  27. "enablePullDownRefresh": true
  28. }
  29. },
  30. {
  31. "path": "pages/login/index" //登录
  32. }
  33. ],
  34. "subPackages": [{
  35. "root": "pagesA",
  36. "pages": [{
  37. "path": "index/detail" //拍品详情
  38. },
  39. {
  40. "path": "index/confirmAuction" //确认竞拍
  41. },
  42. {
  43. "path": "index/auctionList" //竞拍记录
  44. },
  45. {
  46. "path": "gen/perfectData" //完善资料
  47. },
  48. {
  49. "path": "gen/myBank" //我的银行卡
  50. },
  51. {
  52. "path": "gen/about"//关于
  53. },
  54. {
  55. "path": "mine/auction" //竞拍
  56. },
  57. {
  58. "path": "mine/recharge" //充值
  59. },
  60. {
  61. "path": "mine/withdraw" //提现
  62. },
  63. {
  64. "path": "mine/transfer" //转账
  65. },
  66. {
  67. "path": "mine/addBank" //添加银行卡
  68. },
  69. {
  70. "path": "mine/sealAccount" //拍卖保证金账户
  71. },
  72. {
  73. "path": "mine/shoppingAccount" //购物宝账户
  74. },
  75. {
  76. "path": "mine/equityAccount" //股权账户
  77. },
  78. {
  79. "path": "mine/notice" //公告
  80. },
  81. {
  82. "path": "mine/noticeDetail" //公告详情
  83. },
  84. {
  85. "path": "mine/myFans" //我的粉丝
  86. },
  87. {
  88. "path": "mine/invite" //邀请好友
  89. },
  90. {
  91. "path": "mine/footList" //结算清单
  92. },
  93. {
  94. "path": "mine/commissionList" //提成列表
  95. },
  96. {
  97. "path": "mine/stepList" //级差列表
  98. },
  99. {
  100. "path": "mine/gratitudeList" //感恩奖列表
  101. }]
  102. }],
  103. "preloadRule": {
  104. "pages/index/index": {
  105. "network": "all",
  106. "packages": ["pagesA"]
  107. }
  108. },
  109. "tabBar": {
  110. "color": "#000000",
  111. "selectedColor": "#FF8A0D",
  112. "fontSize": "12px",
  113. "iconWidth": "22px",
  114. // "spacing": "6px",
  115. "list": [{
  116. "pagePath": "pages/index/index",
  117. "iconPath": "static/tab/home.png",
  118. "selectedIconPath": "static/tab/homeIn.png",
  119. "text": "首页"
  120. },{
  121. "pagePath": "pages/gen/index",
  122. "iconPath": "static/tab/gen.png",
  123. "selectedIconPath": "static/tab/genIn.png",
  124. "text": "个人资料"
  125. },{
  126. "pagePath": "pages/service/index",
  127. "iconPath": "static/tab/service.png",
  128. "selectedIconPath": "static/tab/serviceIn.png",
  129. "text": "客服"
  130. },{
  131. "pagePath": "pages/mine/index",
  132. "iconPath": "static/tab/mine.png",
  133. "selectedIconPath": "static/tab/mineIn.png",
  134. "text": "我的"
  135. }]
  136. },
  137. "globalStyle": {
  138. "navigationBarTextStyle": "black",
  139. "navigationStyle": "custom",
  140. "navigationBarTitleText": "三凌宝一部",
  141. "navigationBarBackgroundColor": "#F8F8F8",
  142. "backgroundColor": "#F8F8F8"
  143. },
  144. "condition" : { //模式配置,仅开发期间生效
  145. "current": 0, //当前激活的模式(list 的索引项)
  146. "list": [
  147. {
  148. "name": "", //模式名称
  149. "path": "", //启动页面,必选
  150. "query": "" //启动参数,在页面的onLoad函数里面得到
  151. }
  152. ]
  153. }
  154. }