pages.json 692 B

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