pages.json 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. // uni-ui 规则如下配置
  6. "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
  7. }
  8. },
  9. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  10. {
  11. "path": "pages/index/index",
  12. "style": {
  13. "navigationBarTitleText": "首页"
  14. }
  15. },
  16. {
  17. "path": "pages/login/login",
  18. "style": {
  19. "navigationBarTitleText": "登录",
  20. "enablePullDownRefresh": false
  21. }
  22. },
  23. {
  24. "path": "pages/login_two/login_two",
  25. "style": {
  26. "navigationBarTitleText": "手机号登录",
  27. "enablePullDownRefresh": false
  28. }
  29. }, {
  30. "path": "pages/login_three/login_three",
  31. "style": {
  32. "navigationBarTitleText": "找回密码",
  33. "enablePullDownRefresh": false
  34. }
  35. }, {
  36. "path": "pages/resource/resource",
  37. "style": {
  38. "navigationBarTitleText": "资源库",
  39. "enablePullDownRefresh": false
  40. }
  41. }, {
  42. "path": "pages/activityPage/activityPage",
  43. "style": {
  44. "navigationBarTitleText": "活动页",
  45. "enablePullDownRefresh": false
  46. }
  47. }, {
  48. "path": "pages/message/message",
  49. "style": {
  50. "navigationBarTitleText": "消息",
  51. "enablePullDownRefresh": false
  52. }
  53. }, {
  54. "path": "pages/message/messageDetail",
  55. "style": {
  56. "navigationBarTitleText": "活动消息",
  57. "enablePullDownRefresh": false
  58. }
  59. }, {
  60. "path": "pages/mine/mine",
  61. "style": {
  62. "navigationBarTitleText": "我的",
  63. "enablePullDownRefresh": false
  64. }
  65. }
  66. ,{
  67. "path" : "pages/teachingDetail/teachingDetail",
  68. "style" :
  69. {
  70. "navigationBarTitleText": "教研室详情",
  71. "enablePullDownRefresh": false
  72. }
  73. }
  74. ,{
  75. "path" : "pages/teachingList/teachingList",
  76. "style" :
  77. {
  78. "navigationBarTitleText": "教研室列表",
  79. "enablePullDownRefresh": false
  80. }
  81. }
  82. ,{
  83. "path" : "pages/mineSubscribe/mineSubscribe",
  84. "style" :
  85. {
  86. "navigationBarTitleText": "",
  87. "enablePullDownRefresh": false
  88. }
  89. }
  90. ],
  91. "tabBar": {
  92. "list": [
  93. {
  94. "pagePath": "pages/index/index",
  95. "text": "首页",
  96. "iconPath": "static/tabBarIcon/home.png",
  97. "selectedIconPath": "static/tabBarIcon/home-selected.png"
  98. },
  99. {
  100. "pagePath": "pages/resource/resource",
  101. "text": "资源库",
  102. "iconPath": "static/tabBarIcon/resource.png",
  103. "selectedIconPath": "static/tabBarIcon/resource-selected.png"
  104. },
  105. {
  106. "pagePath": "pages/activityPage/activityPage",
  107. "text": "活动",
  108. "iconPath": "static/tabBarIcon/activity.png",
  109. "selectedIconPath": "static/tabBarIcon/activity-selected.png"
  110. },
  111. {
  112. "pagePath": "pages/message/message",
  113. "text": "消息",
  114. "iconPath": "static/tabBarIcon/message.png",
  115. "selectedIconPath": "static/tabBarIcon/message-selected.png"
  116. },
  117. {
  118. "pagePath": "pages/mine/mine",
  119. "text": "我的",
  120. "iconPath": "static/tabBarIcon/mine.png",
  121. "selectedIconPath": "static/tabBarIcon/mine-selected.png"
  122. }
  123. ]
  124. },
  125. "globalStyle": {
  126. "navigationStyle": "custom",
  127. "navigationBarTextStyle": "black",
  128. "navigationBarTitleText": "uni-app",
  129. "navigationBarBackgroundColor": "#ffffff",
  130. "backgroundColor": "#F8F8F8",
  131. "navigationBarTitleCentered": true
  132. },
  133. "uniIdRouter": {}
  134. }