pages.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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/houseDetail/houseDetail",
  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. "path": "pages/reportPage/reportPage",
  37. "style": {
  38. "navigationBarTitleText": "效果报表",
  39. "enablePullDownRefresh": true,
  40. "onReachBottomDistance": 100,
  41. "scrollIndicator": "none",
  42. "app-plus": {
  43. "pullToRefresh": {
  44. "support": true,
  45. "color": "#ff3333",
  46. "style": "circle"
  47. }
  48. }
  49. }
  50. }
  51. ,{
  52. "path" : "pages/revenueRankingPage/revenueRankingPage",
  53. "style": {
  54. "navigationBarTitleText": "收益排行榜",
  55. "enablePullDownRefresh": true,
  56. "onReachBottomDistance": 50,
  57. "scrollIndicator": "none",
  58. "app-plus": {
  59. "pullToRefresh": {
  60. "support": true,
  61. "color": "#ff3333",
  62. "style": "circle"
  63. }
  64. }
  65. }
  66. }
  67. ],
  68. "globalStyle": {
  69. "navigationBarTextStyle": "black",
  70. "navigationBarTitleText": "uni-app",
  71. "navigationBarBackgroundColor": "#F8F8F8",
  72. "backgroundColor": "#F8F8F8",
  73. "navigationStyle":"custom",
  74. "app-plus": {
  75. "titleView": false
  76. }
  77. },
  78. "tabBar": {
  79. "color": "#999999",
  80. "selectedColor": "#333333",
  81. "borderStyle": "black",
  82. "backgroundColor": "#ffffff",
  83. "list": []
  84. }
  85. }