pages.json 699 B

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