pages.json 773 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "校园",
  7. "enablePullDownRefresh": false
  8. }
  9. },
  10. {
  11. "path": "pages/reshui/reshui",
  12. "style": {
  13. "navigationBarTitleText": "热水",
  14. "enablePullDownRefresh": false
  15. }
  16. },
  17. {
  18. "path": "pages/recharge/recharge",
  19. "style": {
  20. "navigationBarTitleText": "钱包充值",
  21. "enablePullDownRefresh": false
  22. }
  23. }
  24. ],
  25. "globalStyle": {
  26. "navigationBarTextStyle": "black",
  27. "navigationBarTitleText": "uni-app",
  28. "navigationBarBackgroundColor": "#fff",
  29. "backgroundColor": "#fff",
  30. "usingComponents": {
  31. "login": "plugin://myPlugin/login"
  32. }
  33. }
  34. }