pages.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. "navigationBarTitleText": "微信绑定",
  71. "menuSrc":"static/img/leftTriangle.png",
  72. "enablePullDownRefresh": true
  73. // "disableScroll": true
  74. }
  75. }
  76. ],
  77. "globalStyle": {
  78. "navigationBarTextStyle": "white",
  79. "navigationBarTitleText": "",
  80. "navigationBarBackgroundColor": "#206DC3",
  81. "backgroundColor": "#F8F8F8",
  82. "animationType":"slide-in-right",
  83. "animationDuration":200
  84. },
  85. "tabBar": {
  86. "color": "#7A7E83",
  87. "selectedColor": "#007AFF",
  88. "borderStyle": "black",
  89. "backgroundColor": "#F8F8F8",
  90. "list": [{
  91. "pagePath": "pages/Charts/mainStatistics",
  92. "iconPath": "static/img/home.png",
  93. "selectedIconPath": "static/img/homeHL.png",
  94. "text": "首页"
  95. },
  96. {
  97. "pagePath": "pages/User/merchantList",
  98. "iconPath": "static/img/merchantList.png",
  99. "selectedIconPath": "static/img/merchantListHL.png",
  100. "text": "机器销售"
  101. },
  102. {
  103. "pagePath": "pages/Charts/equipmentStatistics",
  104. "iconPath": "static/img/equipmentSratisticsList.png",
  105. "selectedIconPath": "static/img/equipmentSratisticsListHL.png",
  106. "text": "机器排行"
  107. },
  108. {
  109. "pagePath": "pages/User/equipmentStatusList",
  110. "iconPath": "static/img/equipment.png",
  111. "selectedIconPath": "static/img/equipmentHL.png",
  112. "text": "机器状态"
  113. },
  114. {
  115. "pagePath": "pages/User/user",
  116. "iconPath": "static/img/user.png",
  117. "selectedIconPath": "static/img/userHL.png",
  118. "text": "我的"
  119. }
  120. ]
  121. }
  122. }