pages.json 1.7 KB

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