pages.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "path": "pages/reportPage/reportPage",
  21. "style": {
  22. "navigationBarTitleText": "效果报表",
  23. "enablePullDownRefresh": true,
  24. "onReachBottomDistance": 100,
  25. "scrollIndicator": "none",
  26. "app-plus": {
  27. "pullToRefresh": {
  28. "support": true,
  29. "color": "#ff3333",
  30. "style": "circle"
  31. }
  32. }
  33. }
  34. }
  35. ],
  36. "globalStyle": {
  37. "navigationBarTextStyle": "black",
  38. "navigationBarTitleText": "uni-app",
  39. "navigationBarBackgroundColor": "#F8F8F8",
  40. "backgroundColor": "#F8F8F8",
  41. "navigationStyle":"custom",
  42. "app-plus": {
  43. "titleView": false
  44. }
  45. },
  46. "tabBar": {
  47. "color": "#999999",
  48. "selectedColor": "#333333",
  49. "borderStyle": "black",
  50. "backgroundColor": "#ffffff",
  51. "list": []
  52. }
  53. }