pages.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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/Login/loginWeixin",
  12. "style" : {
  13. "navigationStyle": "custom"
  14. }
  15. },
  16. {
  17. "path" : "pages/Charts/mainStatistics",
  18. "style" : {
  19. "navigationBarTitleText":"统计图表"
  20. // "disableScroll": true
  21. // "enablePullDownRefresh": true
  22. }
  23. },
  24. {
  25. "path" : "pages/User/merchantList",
  26. "style" : {
  27. "navigationBarTitleText":"机器销售",
  28. // "disableScroll": true,
  29. "enablePullDownRefresh": true
  30. }
  31. },
  32. {
  33. "path" : "pages/User/equipmentSratisticsList",
  34. "style" : {
  35. "navigationBarTitleText":"机器排行",
  36. // "disableScroll": true,
  37. "enablePullDownRefresh": true
  38. }
  39. },
  40. {
  41. "path" : "pages/User/equipmentStatusList",
  42. "style" : {
  43. "navigationBarTitleText":"机器状态",
  44. // "disableScroll": true,
  45. "enablePullDownRefresh": true
  46. }
  47. },
  48. {
  49. "path" : "pages/User/user",
  50. "style" : {
  51. "navigationBarTitleText":"我的"
  52. }
  53. },
  54. {
  55. "path": "pages/Charts/elseStatistics",
  56. "style": {
  57. "navigationBarTitleText": "统计图表"
  58. }
  59. },
  60. {
  61. "path": "pages/Charts/equipmentStatistics",
  62. "style": {
  63. "navigationBarTitleText": "销售排行"
  64. }
  65. }
  66. ,{
  67. "path" : "pages/WeixinSwicth/WeixinSwicth",
  68. "style" : {
  69. // "navigationStyle": "custom",
  70. "enablePullDownRefresh": true,
  71. "disableScroll": true
  72. }
  73. }
  74. ],
  75. "globalStyle": {
  76. "navigationBarTextStyle": "white",
  77. "navigationBarTitleText": "",
  78. "navigationBarBackgroundColor": "#206DC3",
  79. "backgroundColor": "#F8F8F8",
  80. "animationType":"slide-in-right",
  81. "animationDuration":200
  82. },
  83. "tabBar": {
  84. "color": "#7A7E83",
  85. "selectedColor": "#007AFF",
  86. "borderStyle": "black",
  87. "backgroundColor": "#F8F8F8",
  88. "list": [{
  89. "pagePath": "pages/Charts/mainStatistics",
  90. "iconPath": "static/img/home.png",
  91. "selectedIconPath": "static/img/homeHL.png",
  92. "text": "首页"
  93. },
  94. {
  95. "pagePath": "pages/User/merchantList",
  96. "iconPath": "static/img/merchantList.png",
  97. "selectedIconPath": "static/img/merchantListHL.png",
  98. "text": "机器销售"
  99. },
  100. {
  101. "pagePath": "pages/Charts/equipmentStatistics",
  102. "iconPath": "static/img/equipmentSratisticsList.png",
  103. "selectedIconPath": "static/img/equipmentSratisticsListHL.png",
  104. "text": "机器排行"
  105. },
  106. {
  107. "pagePath": "pages/User/equipmentStatusList",
  108. "iconPath": "static/img/equipment.png",
  109. "selectedIconPath": "static/img/equipmentHL.png",
  110. "text": "机器状态"
  111. },
  112. {
  113. "pagePath": "pages/User/user",
  114. "iconPath": "static/img/user.png",
  115. "selectedIconPath": "static/img/userHL.png",
  116. "text": "我的"
  117. }
  118. ]
  119. }
  120. }