pages.json 628 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationStyle": "custom",
  7. "enablePullDownRefresh": true
  8. }
  9. },
  10. {
  11. "path": "pages/index/auto",
  12. "style": {
  13. "navigationStyle": "custom"
  14. }
  15. },
  16. {
  17. "path": "pages/index/auto2",
  18. "style": {
  19. "navigationStyle": "custom"
  20. }
  21. }
  22. ],
  23. "globalStyle": {
  24. "navigationBarTextStyle": "black",
  25. "navigationBarTitleText": "企业助手",
  26. "navigationBarBackgroundColor": "#F8F8F8",
  27. "backgroundColor": "#F8F8F8"
  28. },
  29. "uniIdRouter": {}
  30. }