pages.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. "tabBar": {
  109. "color": "#999999",
  110. "selectedColor": "#333333",
  111. "borderStyle": "white",
  112. "backgroundColor": "#ffffff",
  113. "list": [{
  114. "pagePath": "pages/index/index",
  115. "iconPath": "static/tabBarImg/dianzan.png",
  116. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  117. "text": "首页"
  118. }, {
  119. "pagePath": "pages/my/my",
  120. "iconPath": "static/tabBarImg/me.png",
  121. "selectedIconPath": "static/tabBarImg/me_cur.png",
  122. "text": "我的"
  123. }]
  124. },
  125. "globalStyle": {
  126. "navigationBarTextStyle": "black",
  127. // "navigationBarTitleText": "加载中",
  128. "navigationBarBackgroundColor": "#FFE05C",
  129. "backgroundColor": "#FFE05C"
  130. },
  131. "uniIdRouter": {}
  132. }