pages.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. "path" : "pages/ownerCertification/ownerCertification",
  53. "style" :
  54. {
  55. "navigationBarTitleText": "业主认证",
  56. "enablePullDownRefresh": false
  57. }
  58. }
  59. ,{
  60. "path" : "pages/certificationResultPage/certificationResultPage",
  61. "style" :
  62. {
  63. "navigationBarTitleText": "业主认证",
  64. "enablePullDownRefresh": false
  65. }
  66. },{
  67. "path" : "pages/developSetting/developSetting",
  68. "style" :
  69. {
  70. "navigationBarTitleText": "设置页面",
  71. "enablePullDownRefresh": false
  72. }
  73. }
  74. ],
  75. "globalStyle": {
  76. "navigationBarTextStyle": "black",
  77. "navigationBarTitleText": "uni-app",
  78. "navigationBarBackgroundColor": "#F8F8F8",
  79. "backgroundColor": "#F8F8F8",
  80. "navigationStyle":"custom",
  81. "app-plus": {
  82. "titleView": false
  83. }
  84. },
  85. "tabBar": {
  86. "color": "#999999",
  87. "selectedColor": "#333333",
  88. "borderStyle": "black",
  89. "backgroundColor": "#ffffff",
  90. "list": []
  91. }
  92. }