pages.json 732 B

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