pages.json 751 B

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