pages.json 855 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "titleNView": false // 设置为false可以完全隐藏顶部导航
  7. }
  8. },
  9. {
  10. "path" : "pages/index/success",
  11. "style" :
  12. {
  13. "navigationBarTitleText" : "提交成功"
  14. }
  15. },
  16. {
  17. "path" : "pages/backend/backend",
  18. "style": {
  19. "titleNView": false // 设置为false可以完全隐藏顶部导航
  20. }
  21. },
  22. {
  23. "path" : "pages/backend/checkPassword",
  24. "style": {
  25. "titleNView": false // 设置为false可以完全隐藏顶部导航
  26. }
  27. }
  28. ],
  29. "globalStyle": {
  30. "navigationBarTextStyle": "black",
  31. "navigationBarTitleText": "uni-app",
  32. "navigationBarBackgroundColor": "#F8F8F8",
  33. "backgroundColor": "#F8F8F8"
  34. },
  35. "uniIdRouter": {}
  36. }