pages.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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/login/login",
  8. "style": {
  9. "navigationBarTitleText" : "登录",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationBarTitleText" : "首页",
  17. "enablePullDownRefresh": false
  18. }
  19. },
  20. {
  21. "path" : "pages/my/my",
  22. "style" :
  23. {
  24. "navigationBarTitleText" : "个人中心",
  25. "enablePullDownRefresh" : false
  26. }
  27. }, {
  28. "path" : "pages/userInfo/userInfo",
  29. "style" :
  30. {
  31. "navigationBarTitleText" : "个人信息",
  32. "enablePullDownRefresh" : false
  33. }
  34. },
  35. {
  36. "path" : "pages/forgetPassword/forgetPassword",
  37. "style" :
  38. {
  39. "navigationBarTitleText" : "找回密码",
  40. "enablePullDownRefresh" : false
  41. }
  42. },
  43. {
  44. "path" : "pages/updatePassword/updatePassword",
  45. "style" :
  46. {
  47. "navigationBarTitleText" : "修改登录密码",
  48. "enablePullDownRefresh" : false
  49. }
  50. },
  51. {
  52. "path" : "pages/register/register",
  53. "style" :
  54. {
  55. "navigationBarTitleText" : "注册",
  56. "enablePullDownRefresh" : false
  57. }
  58. },
  59. {
  60. "path" : "pages/specialistsList/specialistsList",
  61. "style" :
  62. {
  63. "navigationBarTitleText" : "我的专员",
  64. "enablePullDownRefresh" : false
  65. }
  66. },
  67. {
  68. "path" : "pages/earningsList/earningsList",
  69. "style" :
  70. {
  71. "navigationBarTitleText" : "我的收益",
  72. "enablePullDownRefresh" : false
  73. }
  74. },
  75. {
  76. "path" : "pages/todayEarningsList/todayEarningsList",
  77. "style" :
  78. {
  79. "navigationBarTitleText" : "今日收益",
  80. "enablePullDownRefresh" : false
  81. }
  82. },
  83. {
  84. "path" : "pages/todayPromotionList/todayPromotionList",
  85. "style" :
  86. {
  87. "navigationBarTitleText" : "今日推广",
  88. "enablePullDownRefresh" : false
  89. }
  90. },
  91. {
  92. "path" : "pages/directPromotionList/directPromotionList",
  93. "style" :
  94. {
  95. "navigationBarTitleText" : "我的直推",
  96. "enablePullDownRefresh" : false
  97. }
  98. },
  99. {
  100. "path" : "pages/indirectPromotionList/indirectPromotionList",
  101. "style" :
  102. {
  103. "navigationBarTitleText" : "我的间推",
  104. "enablePullDownRefresh" : false
  105. }
  106. },
  107. {
  108. "path" : "pages/myGroup/myGroup",
  109. "style" :
  110. {
  111. "navigationBarTitleText" : "我的分组",
  112. "enablePullDownRefresh" : false
  113. }
  114. },
  115. {
  116. "path" : "pages/cooperation/cooperation",
  117. "style" :
  118. {
  119. "navigationBarTitleText" : "合作伙伴",
  120. "enablePullDownRefresh" : false
  121. }
  122. },
  123. {
  124. "path" : "pages/addGroup/addGroup",
  125. "style" :
  126. {
  127. "navigationBarTitleText" : "新增分组",
  128. "enablePullDownRefresh" : false
  129. }
  130. },
  131. {
  132. "path" : "pages/purchaseCoupon/purchaseCoupon",
  133. "style" :
  134. {
  135. "navigationBarTitleText" : "购买优惠券",
  136. "enablePullDownRefresh" : false
  137. }
  138. },
  139. {
  140. "path" : "pages/groupDetail/groupDetail",
  141. "style" :
  142. {
  143. "navigationBarTitleText" : "分组详情",
  144. "enablePullDownRefresh" : false
  145. }
  146. },
  147. {
  148. "path" : "pages/updateGroup/updateGroup",
  149. "style" :
  150. {
  151. "navigationBarTitleText" : "修改分组",
  152. "enablePullDownRefresh" : false
  153. }
  154. }
  155. ],
  156. "tabBar": {
  157. "color": "#999999",
  158. "selectedColor": "#333333",
  159. "borderStyle": "white",
  160. "backgroundColor": "#ffffff",
  161. "list": [{
  162. "pagePath": "pages/index/index",
  163. "iconPath": "static/tabBarImg/dianzan.png",
  164. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  165. "text": "首页"
  166. }, {
  167. "pagePath": "pages/my/my",
  168. "iconPath": "static/tabBarImg/me.png",
  169. "selectedIconPath": "static/tabBarImg/me_cur.png",
  170. "text": "我的"
  171. }]
  172. },
  173. "globalStyle": {
  174. "navigationStyle": "custom",
  175. "navigationBarTextStyle": "black",
  176. // "navigationBarTitleText": "加载中",
  177. "navigationBarBackgroundColor": "#FFE05C",
  178. "backgroundColor": "#FFE05C"
  179. },
  180. "uniIdRouter": {}
  181. }