pages.json 787 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "扫码"
  7. }
  8. },
  9. {
  10. "path": "pages/code_info/code_info",
  11. "style": {
  12. "navigationBarTitleText": "基本信息"
  13. }
  14. },
  15. {
  16. "path": "pages/junior/junior",
  17. "style": {
  18. "navigationBarTitleText": "所属者"
  19. }
  20. },
  21. {
  22. "path": "pages/test/test",
  23. "style": {}
  24. }
  25. ],
  26. "globalStyle": {
  27. "navigationBarTextStyle": "black",
  28. "navigationBarTitleText": "uni-app",
  29. "navigationBarBackgroundColor": "#F8F8F8",
  30. "backgroundColor": "#F8F8F8",
  31. "navigationStyle": "custom",
  32. "app-plus": {
  33. "titleNView": false,
  34. "scrollIndicator": "none" //隐藏滚动条
  35. }
  36. }
  37. }