pages.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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/scanCode/index",
  27. "style" :
  28. {
  29. "navigationBarTitleText": "扫一扫",
  30. "enablePullDownRefresh": false
  31. }
  32. }
  33. ],
  34. "globalStyle": {
  35. "navigationBarTextStyle": "black",
  36. "navigationBarTitleText": "农工笔记",
  37. "navigationBarBackgroundColor": "#F8F8F8",
  38. "backgroundColor": "#F8F8F8"
  39. }
  40. }