pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. "globalStyle": {
  98. "navigationBarTextStyle": "black",
  99. "navigationBarTitleText": "众筹帮",
  100. "navigationBarBackgroundColor": "#F8F8F8",
  101. "backgroundColor": "#F8F8F8"
  102. },
  103. "tabBar": {
  104. "color": "#A0A0A0",
  105. "selectedColor": "#FFA74F",
  106. "backgroundColor": "#fff",
  107. "borderStyle": "black",
  108. "height": "60px",
  109. "list": [
  110. {
  111. "text": "首页",
  112. "pagePath": "pages/index/index",
  113. "iconPath": "/static/tabbar/home.png",
  114. "selectedIconPath": "/static/tabbar/homeCheck.png"
  115. },
  116. {
  117. "text": "我的",
  118. "pagePath": "pages/my/index",
  119. "iconPath": "/static/tabbar/my.png",
  120. "selectedIconPath": "/static/tabbar/myCheck.png"
  121. }
  122. ]
  123. },
  124. "uniIdRouter": {}
  125. }