pages.json 582 B

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