pages.json 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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. "path" : "pages/activityList/activityList",
  92. "style" :
  93. {
  94. "navigationBarTitleText": "",
  95. "enablePullDownRefresh": false
  96. }
  97. }
  98. ,{
  99. "path" : "pages/activityDetail/activityDetail",
  100. "style" :
  101. {
  102. "navigationBarTitleText": "",
  103. "enablePullDownRefresh": false
  104. }
  105. }
  106. ,{
  107. "path" : "pages/jys/jys",
  108. "style" :
  109. {
  110. "navigationBarTitleText": "",
  111. "enablePullDownRefresh": false
  112. }
  113. }
  114. ,{
  115. "path" : "pages/hd/hd",
  116. "style" :
  117. {
  118. "navigationBarTitleText": "",
  119. "enablePullDownRefresh": false
  120. }
  121. }
  122. ,{
  123. "path" : "pages/publish/publish",
  124. "style" :
  125. {
  126. "navigationBarTitleText": "",
  127. "enablePullDownRefresh": false
  128. }
  129. }
  130. ],
  131. "tabBar": {
  132. "list": [
  133. {
  134. "pagePath": "pages/index/index",
  135. "text": "首页",
  136. "iconPath": "static/tabBarIcon/home.png",
  137. "selectedIconPath": "static/tabBarIcon/home-selected.png"
  138. },
  139. {
  140. "pagePath": "pages/resource/resource",
  141. "text": "资源库",
  142. "iconPath": "static/tabBarIcon/resource.png",
  143. "selectedIconPath": "static/tabBarIcon/resource-selected.png"
  144. },
  145. {
  146. "pagePath": "pages/activityPage/activityPage",
  147. "text": "活动",
  148. "iconPath": "static/tabBarIcon/activity.png",
  149. "selectedIconPath": "static/tabBarIcon/activity-selected.png"
  150. },
  151. {
  152. "pagePath": "pages/message/message",
  153. "text": "消息",
  154. "iconPath": "static/tabBarIcon/message.png",
  155. "selectedIconPath": "static/tabBarIcon/message-selected.png"
  156. },
  157. {
  158. "pagePath": "pages/mine/mine",
  159. "text": "我的",
  160. "iconPath": "static/tabBarIcon/mine.png",
  161. "selectedIconPath": "static/tabBarIcon/mine-selected.png"
  162. }
  163. ]
  164. },
  165. "globalStyle": {
  166. "navigationStyle": "custom",
  167. "navigationBarTextStyle": "black",
  168. "navigationBarTitleText": "uni-app",
  169. "navigationBarBackgroundColor": "#ffffff",
  170. "backgroundColor": "#F8F8F8",
  171. "navigationBarTitleCentered": true
  172. },
  173. "uniIdRouter": {}
  174. }