pages.json 3.6 KB

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