pages.json 849 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/homePage/homePage",
  5. "style": {
  6. "navigationBarTitleText": "业主工会",
  7. "enablePullDownRefresh": true,
  8. "onReachBottomDistance": 50,
  9. "scrollIndicator": "none",
  10. "app-plus": {
  11. "pullToRefresh": {
  12. "support": true,
  13. "color": "#ff3333",
  14. "style": "circle"
  15. }
  16. }
  17. }
  18. }
  19. ],
  20. "globalStyle": {
  21. "navigationBarTextStyle": "black",
  22. "navigationBarTitleText": "uni-app",
  23. "navigationBarBackgroundColor": "#F8F8F8",
  24. "backgroundColor": "#F8F8F8",
  25. "navigationStyle": "custom",
  26. "app-plus": {
  27. "titleView": false
  28. }
  29. },
  30. "tabBar": {
  31. "color": "#999999",
  32. "selectedColor": "#333333",
  33. "borderStyle": "black",
  34. "backgroundColor": "#ffffff",
  35. "list": []
  36. }
  37. }