pages.json 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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/index/self_info",
  11. "style": {
  12. "navigationBarTitleText": "个人信息"
  13. }
  14. },
  15. {
  16. "path": "pages/index/org_member",
  17. "style": {
  18. "navigationBarTitleText": "组织成员"
  19. }
  20. },
  21. {
  22. "path": "pages/index/back_login",
  23. "style": {
  24. "navigationBarTitleText": "后台登录"
  25. }
  26. }
  27. ,{
  28. "path" : "pages/index/upload/upload",
  29. "style" :
  30. {
  31. "navigationBarTitleText": "内容上传",
  32. "enablePullDownRefresh": false
  33. }
  34. }
  35. ,{
  36. "path" : "pages/index/record/record",
  37. "style" :
  38. {
  39. "navigationBarTitleText": "发布记录",
  40. "enablePullDownRefresh": false
  41. }
  42. },
  43. {
  44. "path" : "pages/index/auth/index",
  45. "style" :
  46. {
  47. "navigationBarTitleText": "农工笔记",
  48. "enablePullDownRefresh": false
  49. }
  50. },
  51. {
  52. "path" : "pages/index/activity/activity",
  53. "style" :
  54. {
  55. "navigationBarTitleText": "活动记录",
  56. "enablePullDownRefresh": false
  57. }
  58. },
  59. {
  60. "path" : "pages/index/honor/honor",
  61. "style" :
  62. {
  63. "navigationBarTitleText": "荣誉殿堂",
  64. "enablePullDownRefresh": false
  65. }
  66. },
  67. {
  68. "path" : "pages/index/honor/record",
  69. "style" :
  70. {
  71. "navigationBarTitleText": "上传荣誉",
  72. "enablePullDownRefresh": false
  73. }
  74. },
  75. {
  76. "path" : "pages/index/activity/create1",
  77. "style" :
  78. {
  79. "navigationBarTitleText": "创建活动",
  80. "enablePullDownRefresh": false
  81. }
  82. },
  83. {
  84. "path" : "pages/index/activity/create2",
  85. "style" :
  86. {
  87. "navigationBarTitleText": "创建活动",
  88. "enablePullDownRefresh": false
  89. }
  90. },
  91. {
  92. "path" : "pages/index/activity/edit_page",
  93. "style" :
  94. {
  95. "navigationBarTitleText": "编辑活动",
  96. "enablePullDownRefresh": false
  97. }
  98. },
  99. {
  100. "path" : "pages/index/activity/list",
  101. "style" :
  102. {
  103. "navigationBarTitleText": "农工活动",
  104. "enablePullDownRefresh": false
  105. }
  106. },
  107. {
  108. "path" : "pages/index/activity/record",
  109. "style" :
  110. {
  111. "navigationBarTitleText": "上传记录",
  112. "enablePullDownRefresh": false
  113. }
  114. },
  115. {
  116. "path" : "pages/index/webview/web-view",
  117. "style" :
  118. {
  119. "navigationBarTitleText": "外部链接",
  120. "enablePullDownRefresh": false
  121. }
  122. }
  123. ],
  124. "globalStyle": {
  125. "navigationBarTextStyle": "black",
  126. "navigationBarTitleText": "农工笔记",
  127. "navigationBarBackgroundColor": "#F8F8F8",
  128. "backgroundColor": "#F8F8F8"
  129. },
  130. "tabBar": {
  131. "list": [{
  132. "pagePath": "pages/index/activity/activity",
  133. "iconPath": "/static/tabbar/activity.png",
  134. "selectedIconPath": "/static/tabbar/activty-ed.png",
  135. "text": "活动记录"
  136. },
  137. {
  138. "pagePath": "pages/index/honor/honor",
  139. "iconPath": "/static/tabbar/honer.png",
  140. "selectedIconPath": "/static/tabbar/honer-ed.png",
  141. "text": "荣誉殿堂"
  142. },
  143. {
  144. "pagePath": "pages/index/index",
  145. "iconPath": "/static/tabbar/self.png",
  146. "selectedIconPath": "/static/tabbar/self-ed.png",
  147. "text": "个人中心"
  148. }
  149. ]
  150. }
  151. }