pages.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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/upload/upload",
  11. "style" :
  12. {
  13. "navigationBarTitleText": "内容上传",
  14. "enablePullDownRefresh": false
  15. }
  16. }
  17. ,{
  18. "path" : "pages/index/record/record",
  19. "style" :
  20. {
  21. "navigationBarTitleText": "发布记录",
  22. "enablePullDownRefresh": false
  23. }
  24. },
  25. {
  26. "path" : "pages/index/auth/index",
  27. "style" :
  28. {
  29. "navigationBarTitleText": "农工笔记",
  30. "enablePullDownRefresh": false
  31. }
  32. },
  33. {
  34. "path" : "pages/index/activity/activity",
  35. "style" :
  36. {
  37. "navigationBarTitleText": "活动记录",
  38. "enablePullDownRefresh": false
  39. }
  40. },
  41. {
  42. "path" : "pages/index/honor/honor",
  43. "style" :
  44. {
  45. "navigationBarTitleText": "荣誉殿堂",
  46. "enablePullDownRefresh": false
  47. }
  48. }
  49. ],
  50. "globalStyle": {
  51. "navigationBarTextStyle": "black",
  52. "navigationBarTitleText": "农工笔记",
  53. "navigationBarBackgroundColor": "#F8F8F8",
  54. "backgroundColor": "#F8F8F8"
  55. },
  56. "tabBar": {
  57. "list": [{
  58. "pagePath": "pages/index/activity/activity",
  59. "iconPath": "/static/tabbar/activity.png",
  60. "selectedIconPath": "/static/tabbar/activty-ed.png",
  61. "text": "活动记录"
  62. },
  63. {
  64. "pagePath": "pages/index/honor/honor",
  65. "iconPath": "/static/tabbar/honer.png",
  66. "selectedIconPath": "/static/tabbar/honer-ed.png",
  67. "text": "荣誉殿堂"
  68. },
  69. {
  70. "pagePath": "pages/index/index",
  71. "iconPath": "/static/tabbar/self.png",
  72. "selectedIconPath": "/static/tabbar/self-ed.png",
  73. "text": "个人中心"
  74. }
  75. ]
  76. }
  77. }