pages.json 925 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/enter/enter",
  5. "style": {
  6. "navigationBarTitleText": "",
  7. "disableScroll": true,
  8. "app-plus": {
  9. "titleNView": false
  10. }
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationBarTitleText": "",
  17. "disableScroll": true,
  18. "app-plus": {
  19. "titleNView": false
  20. }
  21. }
  22. },
  23. {
  24. "path": "pages/login/login",
  25. "style": {
  26. "navigationBarTitleText": "登录",
  27. "disableScroll": true,
  28. "app-plus": {
  29. "titleNView": false
  30. }
  31. }
  32. }
  33. ],
  34. "globalStyle": {
  35. "navigationBarTextStyle": "black",
  36. "navigationBarTitleText": "uni-app",
  37. "navigationBarBackgroundColor": "#F8F8F8",
  38. "backgroundColor": "#F8F8F8",
  39. "app-plus": {
  40. "scrollIndicator": "none"
  41. }
  42. },
  43. "uniIdRouter": {}
  44. }