pages.json 1.2 KB

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