pages.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. "path" : "pages/revenueRankingPage/revenueRankingPage",
  38. "style": {
  39. "navigationBarTitleText": "收益排行榜",
  40. "enablePullDownRefresh": true,
  41. "onReachBottomDistance": 50,
  42. "scrollIndicator": "none",
  43. "app-plus": {
  44. "pullToRefresh": {
  45. "support": true,
  46. "color": "#ff3333",
  47. "style": "circle"
  48. }
  49. }
  50. }
  51. }
  52. ],
  53. "globalStyle": {
  54. "navigationBarTextStyle": "black",
  55. "navigationBarTitleText": "uni-app",
  56. "navigationBarBackgroundColor": "#F8F8F8",
  57. "backgroundColor": "#F8F8F8",
  58. "navigationStyle":"default",
  59. "app-plus": {
  60. "titleView": false
  61. }
  62. },
  63. "tabBar": {
  64. "color": "#999999",
  65. "selectedColor": "#333333",
  66. "borderStyle": "black",
  67. "backgroundColor": "#ffffff",
  68. "list": []
  69. }
  70. }