pages.json 881 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "navigationStyle":"custom",
  11. "app-plus": {
  12. "pullToRefresh": {
  13. "support": true,
  14. "color": "#ff3333",
  15. "style": "circle"
  16. }
  17. }
  18. }
  19. }
  20. ],
  21. "globalStyle": {
  22. "navigationBarTextStyle": "black",
  23. "navigationBarTitleText": "uni-app",
  24. "navigationBarBackgroundColor": "#F8F8F8",
  25. "backgroundColor": "#F8F8F8",
  26. "navigationStyle":"default",
  27. "app-plus": {
  28. "titleView": false
  29. }
  30. },
  31. "tabBar": {
  32. "color": "#999999",
  33. "selectedColor": "#333333",
  34. "borderStyle": "black",
  35. "backgroundColor": "#ffffff",
  36. "list": []
  37. }
  38. }