pages.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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. "globalStyle": {
  27. "navigationBarTextStyle": "black",
  28. "navigationBarTitleText": "农工笔记",
  29. "navigationBarBackgroundColor": "#F8F8F8",
  30. "backgroundColor": "#F8F8F8"
  31. }
  32. }