pages.json 807 B

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