pages.json 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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/welcome/welcome",
  8. "style" :
  9. {
  10. "navigationStyle": "custom",
  11. "enablePullDownRefresh": false
  12. }
  13. },
  14. {
  15. "path": "pages/index/index",
  16. "style": {
  17. "navigationBarTitleText" : "首页",
  18. "enablePullDownRefresh": false
  19. }
  20. },
  21. {
  22. "path": "pages/login/login",
  23. "style": {
  24. "navigationBarTitleText" : "登录",
  25. "enablePullDownRefresh": false
  26. }
  27. },
  28. {
  29. "path" : "pages/my/my",
  30. "style" :
  31. {
  32. "navigationBarTitleText" : "个人中心",
  33. "enablePullDownRefresh" : false
  34. }
  35. }, {
  36. "path" : "pages/userInfo/userInfo",
  37. "style" :
  38. {
  39. "navigationBarTitleText" : "个人信息",
  40. "enablePullDownRefresh" : false
  41. }
  42. },
  43. {
  44. "path" : "pages/forgetPassword/forgetPassword",
  45. "style" :
  46. {
  47. "navigationBarTitleText" : "找回密码",
  48. "enablePullDownRefresh" : false
  49. }
  50. },
  51. {
  52. "path" : "pages/updatePassword/updatePassword",
  53. "style" :
  54. {
  55. "navigationBarTitleText" : "修改登录密码",
  56. "enablePullDownRefresh" : false
  57. }
  58. },
  59. {
  60. "path" : "pages/register/register",
  61. "style" :
  62. {
  63. "navigationBarTitleText" : "注册",
  64. "enablePullDownRefresh" : false
  65. }
  66. },
  67. {
  68. "path" : "pages/specialistsList/specialistsList",
  69. "style" :
  70. {
  71. "navigationBarTitleText" : "累计交友圈专员记录"
  72. }
  73. },
  74. {
  75. "path" : "pages/earningsList/earningsList",
  76. "style" :
  77. {
  78. "navigationBarTitleText" : "我的收益",
  79. "enablePullDownRefresh" : false
  80. }
  81. },
  82. {
  83. "path" : "pages/todayEarningsList/todayEarningsList",
  84. "style" :
  85. {
  86. "navigationBarTitleText" : "今日收益",
  87. "enablePullDownRefresh" : false
  88. }
  89. },
  90. {
  91. "path" : "pages/todayPromotionList/todayPromotionList",
  92. "style" :
  93. {
  94. "navigationBarTitleText" : "今日推广",
  95. "enablePullDownRefresh" : false
  96. }
  97. },
  98. {
  99. "path" : "pages/directPromotionList/directPromotionList",
  100. "style" :
  101. {
  102. "navigationBarTitleText" : "我的直推",
  103. "enablePullDownRefresh" : false
  104. }
  105. },
  106. {
  107. "path" : "pages/indirectPromotionList/indirectPromotionList",
  108. "style" :
  109. {
  110. "navigationBarTitleText" : "我的间推",
  111. "enablePullDownRefresh" : false
  112. }
  113. },
  114. {
  115. "path" : "pages/myGroup/myGroup",
  116. "style" :
  117. {
  118. "navigationBarTitleText" : "我的分组",
  119. "enablePullDownRefresh" : false
  120. }
  121. },
  122. {
  123. "path" : "pages/cooperation/cooperation",
  124. "style" :
  125. {
  126. "navigationBarTitleText" : "合作伙伴",
  127. "enablePullDownRefresh" : false
  128. }
  129. },
  130. {
  131. "path" : "pages/addGroup/addGroup",
  132. "style" :
  133. {
  134. "navigationBarTitleText" : "新增分组",
  135. "enablePullDownRefresh" : false
  136. }
  137. },
  138. {
  139. "path" : "pages/purchaseCoupon/purchaseCoupon",
  140. "style" :
  141. {
  142. "navigationBarTitleText" : "购买优惠券",
  143. "enablePullDownRefresh" : false
  144. }
  145. },
  146. {
  147. "path" : "pages/groupDetail/groupDetail",
  148. "style" :
  149. {
  150. "navigationBarTitleText" : "分组详情",
  151. "enablePullDownRefresh" : false
  152. }
  153. },
  154. {
  155. "path" : "pages/updateGroup/updateGroup",
  156. "style" :
  157. {
  158. "navigationBarTitleText" : "修改分组",
  159. "enablePullDownRefresh" : false
  160. }
  161. },
  162. {
  163. "path" : "pages/withdraw/withdraw",
  164. "style" :
  165. {
  166. "navigationBarTitleText" : "收益提现"
  167. }
  168. },
  169. {
  170. "path" : "pages/withdrawalRecord/withdrawalRecord",
  171. "style" :
  172. {
  173. "navigationBarTitleText" : "提现记录"
  174. }
  175. },
  176. {
  177. "path" : "pages/agreement/agreement",
  178. "style" :
  179. {
  180. "navigationBarTitleText" : ""
  181. }
  182. },
  183. {
  184. "path" : "pages/todaySpecialistsList/todaySpecialistsList",
  185. "style" :
  186. {
  187. "navigationBarTitleText" : "今日新增专员记录"
  188. }
  189. },
  190. {
  191. "path" : "pages/specialistsDetail/specialistsDetail",
  192. "style" :
  193. {
  194. "navigationBarTitleText" : "累计交友圈专员详情"
  195. }
  196. },
  197. {
  198. "path" : "pages/spreadRankingList/spreadRankingList",
  199. "style" :
  200. {
  201. "navigationBarTitleText" : "拓客排行榜"
  202. }
  203. }
  204. ],
  205. "tabBar": {
  206. "color": "#999999",
  207. "selectedColor": "#333333",
  208. "borderStyle": "white",
  209. "backgroundColor": "#ffffff",
  210. "list": [{
  211. "pagePath": "pages/index/index",
  212. "iconPath": "static/tabBarImg/dianzan.png",
  213. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  214. "text": "首页"
  215. }, {
  216. "pagePath": "pages/my/my",
  217. "iconPath": "static/tabBarImg/me.png",
  218. "selectedIconPath": "static/tabBarImg/me_cur.png",
  219. "text": "我的"
  220. }]
  221. },
  222. "globalStyle": {
  223. // #ifdef H5
  224. "navigationStyle": "custom",
  225. // #endif
  226. "navigationBarTextStyle": "black",
  227. "navigationBarTitleText": "加载中",
  228. "navigationBarBackgroundColor": "#FFE05C",
  229. "backgroundColor": "#ffffff"
  230. },
  231. "uniIdRouter": {}
  232. }