pages.json 709 B

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