pages.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. "navigationStyle": "custom",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path" : "pages/my/my",
  15. "style" :
  16. {
  17. "navigationStyle": "custom",
  18. "enablePullDownRefresh" : false
  19. }
  20. }, {
  21. "path" : "pages/userInfo/userInfo",
  22. "style" :
  23. {
  24. "navigationStyle": "custom",
  25. "enablePullDownRefresh" : false
  26. }
  27. },
  28. {
  29. "path" : "pages/forgetPassword/forgetPassword",
  30. "style" :
  31. {
  32. "navigationStyle": "custom",
  33. "enablePullDownRefresh" : false
  34. }
  35. },
  36. {
  37. "path" : "pages/updatePassword/updatePassword",
  38. "style" :
  39. {
  40. "navigationStyle": "custom",
  41. "enablePullDownRefresh" : false
  42. }
  43. },
  44. {
  45. "path": "pages/login/login",
  46. "style": {
  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. "tabBar": {
  141. "color": "#999999",
  142. "selectedColor": "#333333",
  143. "borderStyle": "white",
  144. "backgroundColor": "#ffffff",
  145. "list": [{
  146. "pagePath": "pages/index/index",
  147. "iconPath": "static/tabBarImg/dianzan.png",
  148. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  149. "text": "首页"
  150. }, {
  151. "pagePath": "pages/my/my",
  152. "iconPath": "static/tabBarImg/me.png",
  153. "selectedIconPath": "static/tabBarImg/me_cur.png",
  154. "text": "我的"
  155. }]
  156. },
  157. "globalStyle": {
  158. "navigationBarTextStyle": "black",
  159. // "navigationBarTitleText": "加载中",
  160. "navigationBarBackgroundColor": "#FFE05C",
  161. "backgroundColor": "#FFE05C"
  162. },
  163. "uniIdRouter": {}
  164. }