pages.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. {
  2. // 如果您是通过uni_modules形式引入uView,可以忽略此配置
  3. "easycom": {
  4. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  5. },
  6. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. {
  8. "path": "pages/index/index",
  9. "style": {
  10. "navigationStyle": "custom"
  11. // "navigationBarTitleText": "首页"
  12. }
  13. },
  14. {
  15. "path": "pages/my/index",
  16. "style": {
  17. "navigationStyle": "custom"
  18. // "navigationBarTitleText": "我的"
  19. }
  20. },
  21. {
  22. "path": "pages/login/index",
  23. "style": {
  24. "navigationStyle": "custom"
  25. // "navigationBarTitleText": "登录"
  26. }
  27. },
  28. {
  29. "path": "pages/login/register",
  30. "style": {
  31. "navigationStyle": "custom"
  32. // "navigationBarTitleText": "注册"
  33. }
  34. },
  35. {
  36. "path": "pages/login/forget",
  37. "style": {
  38. "navigationStyle": "custom"
  39. // "navigationBarTitleText": "忘记密码"
  40. }
  41. },
  42. {
  43. "path": "pages/growthCenter/index",
  44. "style": {
  45. "navigationBarTitleText": "成长中心"
  46. }
  47. },
  48. {
  49. "path": "pages/growthCenter/wantUpgrade",
  50. "style": {
  51. "navigationBarTitleText": "我要升级"
  52. }
  53. },
  54. {
  55. "path": "pages/rewardBalance/index",
  56. "style": {
  57. "navigationBarTitleText": "悬赏余额"
  58. }
  59. },
  60. {
  61. "path": "pages/rewardBalance/recharge",
  62. "style": {
  63. "navigationBarTitleText": "充值"
  64. }
  65. },
  66. {
  67. "path": "pages/rewardBalance/withdraw",
  68. "style": {
  69. "navigationBarTitleText": "提现"
  70. }
  71. },
  72. {
  73. "path": "pages/taskAmount/withdraw",
  74. "style": {
  75. "navigationBarTitleText": "任务提现"
  76. }
  77. },
  78. {
  79. "path": "pages/taskAmount/withdraw",
  80. "style": {
  81. "navigationBarTitleText": "提现"
  82. }
  83. },
  84. {
  85. "path": "pages/personalProfile/index",
  86. "style": {
  87. "navigationBarTitleText": "个人资料"
  88. }
  89. },
  90. {
  91. "path": "pages/personalProfile/realAuth",
  92. "style": {
  93. "navigationBarTitleText": "实名认证"
  94. }
  95. },
  96. {
  97. "path": "pages/myMessage/index",
  98. "style": {
  99. "navigationBarTitleText": "我的消息"
  100. }
  101. },
  102. {
  103. "path": "pages/myMessage/chat",
  104. "style": {
  105. "navigationBarTitleText": "聊天"
  106. // "navigationStyle": "custom",
  107. }
  108. },
  109. {
  110. "path": "pages/activateVIP/index",
  111. "style": {
  112. "navigationBarTitleText": "开通会员"
  113. }
  114. },
  115. {
  116. "path": "pages/setting/index",
  117. "style": {
  118. "navigationBarTitleText": "系统设置"
  119. }
  120. },
  121. {
  122. "path": "pages/setting/accountSecurity",
  123. "style": {
  124. "navigationBarTitleText": "账户安全"
  125. }
  126. },
  127. {
  128. "path": "pages/setting/changePassword",
  129. "style": {
  130. "navigationBarTitleText": "修改密码"
  131. }
  132. },
  133. {
  134. "path": "pages/setting/retrievePassword",
  135. "style": {
  136. "navigationBarTitleText": "找回密码"
  137. }
  138. }
  139. ],
  140. "globalStyle": {
  141. "navigationBarTextStyle": "black",
  142. "navigationBarTitleText": "众筹帮",
  143. "navigationBarBackgroundColor": "#F8F8F8",
  144. "backgroundColor": "#F8F8F8"
  145. },
  146. "tabBar": {
  147. "color": "#A0A0A0",
  148. "selectedColor": "#FFA74F",
  149. "backgroundColor": "#fff",
  150. "borderStyle": "black",
  151. "height": "60px",
  152. "list": [
  153. {
  154. "text": "首页",
  155. "pagePath": "pages/index/index",
  156. "iconPath": "/static/tabbar/home.png",
  157. "selectedIconPath": "/static/tabbar/homeCheck.png"
  158. },
  159. {
  160. "text": "我的",
  161. "pagePath": "pages/my/index",
  162. "iconPath": "/static/tabbar/my.png",
  163. "selectedIconPath": "/static/tabbar/myCheck.png"
  164. }
  165. ]
  166. },
  167. "uniIdRouter": {}
  168. }