pages.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. },
  9. {
  10. "path" : "pages/login/login",
  11. "style" :
  12. {
  13. "navigationBarTitleText": "登录",
  14. "enablePullDownRefresh": false
  15. }
  16. },
  17. {
  18. "path" : "pages/login_two/login_two",
  19. "style" :
  20. {
  21. "navigationBarTitleText": "手机号登录",
  22. "enablePullDownRefresh": false
  23. }
  24. }
  25. ,{
  26. "path" : "pages/login_three/login_three",
  27. "style" :
  28. {
  29. "navigationBarTitleText": "找回密码",
  30. "enablePullDownRefresh": false
  31. }
  32. }
  33. ,{
  34. "path" : "pages/resource/resource",
  35. "style" :
  36. {
  37. "navigationBarTitleText": "资源库",
  38. "enablePullDownRefresh": false
  39. }
  40. }
  41. ,{
  42. "path" : "pages/activityPage/activityPage",
  43. "style" :
  44. {
  45. "navigationBarTitleText": "活动页",
  46. "enablePullDownRefresh": false
  47. }
  48. }
  49. ,{
  50. "path" : "pages/message/message",
  51. "style" :
  52. {
  53. "navigationBarTitleText": "消息",
  54. "enablePullDownRefresh": false
  55. }
  56. }
  57. ,{
  58. "path" : "pages/mine/mine",
  59. "style" :
  60. {
  61. "navigationBarTitleText": "我的",
  62. "enablePullDownRefresh": false
  63. }
  64. }
  65. ],
  66. "tabBar": {
  67. "list": [
  68. {
  69. "pagePath": "pages/index/index",
  70. "text": "首页"
  71. // "iconPath": "static/img/home.png",
  72. // "selectedIconPath": "static/img/home_1.png"
  73. },
  74. {
  75. "pagePath": "pages/resource/resource",
  76. "text": "资源库"
  77. // "iconPath": "static/img/home.png",
  78. // "selectedIconPath": "static/img/home_1.png"
  79. },
  80. {
  81. "pagePath": "pages/activityPage/activityPage",
  82. "text": "活动"
  83. // "iconPath": "static/img/home.png",
  84. // "selectedIconPath": "static/img/home_1.png"
  85. },
  86. {
  87. "pagePath": "pages/message/message",
  88. "text": "消息"
  89. // "iconPath": "static/img/home.png",
  90. // "selectedIconPath": "static/img/home_1.png"
  91. },
  92. {
  93. "pagePath": "pages/mine/mine",
  94. "text": "我的"
  95. // "iconPath": "static/img/home.png",
  96. // "selectedIconPath": "static/img/home_1.png"
  97. }
  98. ]
  99. },
  100. "globalStyle": {
  101. "navigationBarTextStyle": "black",
  102. "navigationBarTitleText": "uni-app",
  103. "navigationBarBackgroundColor": "#F8F8F8",
  104. "backgroundColor": "#F8F8F8",
  105. "navigationBarTitleCentered": true
  106. },
  107. "uniIdRouter": {}
  108. }