pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/Login/Login",
  5. "style" : {
  6. "navigationStyle": "custom",
  7. "disableScroll": true
  8. }
  9. },
  10. {
  11. "path" : "pages/Charts/mainStatistics",
  12. "style" : {
  13. "navigationBarTitleText":"统计图表"
  14. // "disableScroll": true
  15. // "enablePullDownRefresh": true
  16. }
  17. },
  18. {
  19. "path" : "pages/User/merchantList",
  20. "style" : {
  21. "navigationBarTitleText":"机器销售",
  22. // "disableScroll": true,
  23. "enablePullDownRefresh": true
  24. }
  25. },
  26. {
  27. "path" : "pages/User/equipmentSratisticsList",
  28. "style" : {
  29. "navigationBarTitleText":"机器排行",
  30. // "disableScroll": true,
  31. "enablePullDownRefresh": true
  32. }
  33. },
  34. {
  35. "path" : "pages/User/equipmentStatusList",
  36. "style" : {
  37. "navigationBarTitleText":"机器状态",
  38. // "disableScroll": true,
  39. "enablePullDownRefresh": true
  40. }
  41. },
  42. {
  43. "path" : "pages/User/user",
  44. "style" : {
  45. "navigationBarTitleText":"我的"
  46. }
  47. },
  48. {
  49. "path": "pages/Charts/elseStatistics",
  50. "style": {
  51. "navigationBarTitleText": "统计图表"
  52. }
  53. },
  54. {
  55. "path": "pages/Charts/equipmentStatistics",
  56. "style": {
  57. "navigationBarTitleText": "销售排行"
  58. }
  59. }
  60. ],
  61. "globalStyle": {
  62. "navigationBarTextStyle": "black",
  63. "navigationBarTitleText": "",
  64. "navigationBarBackgroundColor": "#F8F8F8",
  65. "backgroundColor": "#F8F8F8",
  66. "animationType":"slide-in-right",
  67. "animationDuration":200
  68. },
  69. "tabBar": {
  70. "color": "#7A7E83",
  71. "selectedColor": "#007AFF",
  72. "borderStyle": "black",
  73. "backgroundColor": "#F8F8F8",
  74. "list": [{
  75. "pagePath": "pages/Charts/mainStatistics",
  76. "iconPath": "static/img/home.png",
  77. "selectedIconPath": "static/img/homeHL.png",
  78. "text": "首页"
  79. },
  80. {
  81. "pagePath": "pages/User/merchantList",
  82. "iconPath": "static/img/merchantList.png",
  83. "selectedIconPath": "static/img/merchantListHL.png",
  84. "text": "机器销售"
  85. },
  86. {
  87. "pagePath": "pages/Charts/equipmentStatistics",
  88. "iconPath": "static/img/equipmentSratisticsList.png",
  89. "selectedIconPath": "static/img/equipmentSratisticsListHL.png",
  90. "text": "机器排行"
  91. },
  92. {
  93. "pagePath": "pages/User/equipmentStatusList",
  94. "iconPath": "static/img/equipment.png",
  95. "selectedIconPath": "static/img/equipmentHL.png",
  96. "text": "机器状态"
  97. },
  98. {
  99. "pagePath": "pages/User/user",
  100. "iconPath": "static/img/user.png",
  101. "selectedIconPath": "static/img/userHL.png",
  102. "text": "我的"
  103. }
  104. ]
  105. }
  106. }