pages.json 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/index/activity/activity",
  5. "style" :
  6. {
  7. "navigationBarTitleText": "活动记录",
  8. "enablePullDownRefresh": false,
  9. "navigationStyle": "custom",
  10. "navigationBarTextStyle": "white"
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationBarTitleText": "农工笔记",
  17. "navigationStyle": "custom",
  18. "navigationBarTextStyle": "white"
  19. }
  20. },
  21. {
  22. "path": "pages/index/self_info",
  23. "style": {
  24. "navigationBarTitleText": "个人信息"
  25. }
  26. },
  27. {
  28. "path": "pages/index/org_member",
  29. "style": {
  30. "navigationBarTitleText": "组织成员"
  31. }
  32. },
  33. {
  34. "path": "pages/index/back_login",
  35. "style": {
  36. "navigationBarTitleText": "后台登录"
  37. }
  38. }
  39. ,{
  40. "path" : "pages/index/upload/upload",
  41. "style" :
  42. {
  43. "navigationBarTitleText": "内容上传",
  44. "enablePullDownRefresh": false
  45. }
  46. }
  47. ,{
  48. "path" : "pages/index/record/record",
  49. "style" :
  50. {
  51. "navigationBarTitleText": "发布记录",
  52. "enablePullDownRefresh": false
  53. }
  54. },
  55. {
  56. "path" : "pages/index/auth/index",
  57. "style" :
  58. {
  59. "navigationBarTitleText": "农工笔记",
  60. "enablePullDownRefresh": false
  61. }
  62. },
  63. {
  64. "path" : "pages/index/honor/honor",
  65. "style" :
  66. {
  67. "navigationBarTitleText": "荣誉殿堂",
  68. "enablePullDownRefresh": false
  69. }
  70. },
  71. {
  72. "path" : "pages/index/honor/record",
  73. "style" :
  74. {
  75. "navigationBarTitleText": "上传荣誉",
  76. "enablePullDownRefresh": false
  77. }
  78. },
  79. {
  80. "path" : "pages/index/activity/create1",
  81. "style" :
  82. {
  83. "navigationBarTitleText": "创建活动",
  84. "enablePullDownRefresh": false
  85. }
  86. },
  87. {
  88. "path" : "pages/index/activity/create2",
  89. "style" :
  90. {
  91. "navigationBarTitleText": "创建活动",
  92. "enablePullDownRefresh": false
  93. }
  94. },
  95. {
  96. "path" : "pages/index/activity/edit_page",
  97. "style" :
  98. {
  99. "navigationBarTitleText": "编辑活动",
  100. "enablePullDownRefresh": false
  101. }
  102. },
  103. {
  104. "path" : "pages/index/activity/list",
  105. "style" :
  106. {
  107. "navigationBarTitleText": "农工活动",
  108. "enablePullDownRefresh": false
  109. }
  110. },
  111. {
  112. "path" : "pages/index/activity/record",
  113. "style" :
  114. {
  115. "navigationBarTitleText": "上传记录",
  116. "enablePullDownRefresh": false
  117. }
  118. },
  119. {
  120. "path" : "pages/index/activity/files",
  121. "style" :
  122. {
  123. "navigationBarTitleText": "上传文件",
  124. "enablePullDownRefresh": false
  125. }
  126. },
  127. {
  128. "path" : "pages/index/activity/comment",
  129. "style" :
  130. {
  131. "navigationBarTitleText": "添加评论",
  132. "enablePullDownRefresh": false
  133. }
  134. },
  135. {
  136. "path" : "pages/index/webview/web-view",
  137. "style" :
  138. {
  139. "navigationBarTitleText": "外部链接",
  140. "enablePullDownRefresh": false
  141. }
  142. }
  143. ],
  144. "globalStyle": {
  145. "navigationBarTextStyle": "black",
  146. "navigationBarTitleText": "农工笔记",
  147. "navigationBarBackgroundColor": "#F8F8F8",
  148. "backgroundColor": "#F8F8F8"
  149. },
  150. "tabBar": {
  151. "borderStyle":"white",
  152. "list": [{
  153. "pagePath": "pages/index/activity/activity",
  154. "iconPath": "/static/tabbar/activity.png",
  155. "selectedIconPath": "/static/tabbar/activty-ed.png",
  156. "text": "活动记录"
  157. },
  158. {
  159. "pagePath": "pages/index/honor/honor",
  160. "iconPath": "/static/tabbar/honer.png",
  161. "selectedIconPath": "/static/tabbar/honer-ed.png",
  162. "text": "荣誉殿堂"
  163. },
  164. {
  165. "pagePath": "pages/index/index",
  166. "iconPath": "/static/tabbar/self.png",
  167. "selectedIconPath": "/static/tabbar/self-ed.png",
  168. "text": "个人中心"
  169. }
  170. ]
  171. }
  172. }