pages.json 577 B

12345678910111213141516171819202122
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "扫码查询"
  7. }
  8. }
  9. ],
  10. "globalStyle": {
  11. "navigationBarTextStyle": "black",
  12. "navigationBarTitleText": "uni-app",
  13. "navigationBarBackgroundColor": "#F8F8F8",
  14. "backgroundColor": "#F8F8F8",
  15. "scrollIndicator": "none", // 不显示滚动条
  16. "app-plus": {
  17. "scrollIndicator": "none" // 在APP平台都不显示滚动条
  18. }
  19. },
  20. "uniIdRouter": {}
  21. }