pages.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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/User/promoCode",
  56. "style" : {
  57. "navigationBarTitleText":"优惠码"
  58. }
  59. },
  60. {
  61. "path" : "pages/User/buyPromo",
  62. "style" : {
  63. "navigationBarTitleText":"购买优惠码"
  64. }
  65. },
  66. {
  67. "path" : "pages/User/equipmentName",
  68. "style" : {
  69. "navigationBarTitleText":"修改设备名称"
  70. }
  71. },
  72. {
  73. "path": "pages/Charts/elseStatistics",
  74. "style": {
  75. "navigationBarTitleText": "统计图表"
  76. }
  77. },
  78. {
  79. "path": "pages/Charts/equipmentStatistics",
  80. "style": {
  81. "navigationBarTitleText": "销售排行"
  82. }
  83. }
  84. ,{
  85. "path" : "pages/WeixinSwicth/WeixinSwicth",
  86. "style" : {
  87. // "navigationStyle": "custom",
  88. "navigationBarTitleText": "微信绑定",
  89. "menuSrc":"static/img/leftTriangle.png",
  90. "enablePullDownRefresh": true
  91. // "disableScroll": true
  92. }
  93. }
  94. ],
  95. "globalStyle": {
  96. "navigationBarTextStyle": "white",
  97. "navigationBarTitleText": "",
  98. "navigationBarBackgroundColor": "#206DC3",
  99. "backgroundColor": "#F8F8F8",
  100. "animationType":"slide-in-right",
  101. "animationDuration":200
  102. },
  103. "tabBar": {
  104. "color": "#7A7E83",
  105. "selectedColor": "#007AFF",
  106. "borderStyle": "black",
  107. "backgroundColor": "#F8F8F8",
  108. "list": [{
  109. "pagePath": "pages/Charts/mainStatistics",
  110. "iconPath": "static/img/home.png",
  111. "selectedIconPath": "static/img/homeHL.png",
  112. "text": "首页"
  113. },
  114. {
  115. "pagePath": "pages/User/merchantList",
  116. "iconPath": "static/img/merchantList.png",
  117. "selectedIconPath": "static/img/merchantListHL.png",
  118. "text": "机器销售"
  119. },
  120. {
  121. "pagePath": "pages/Charts/equipmentStatistics",
  122. "iconPath": "static/img/equipmentSratisticsList.png",
  123. "selectedIconPath": "static/img/equipmentSratisticsListHL.png",
  124. "text": "机器排行"
  125. },
  126. {
  127. "pagePath": "pages/User/equipmentStatusList",
  128. "iconPath": "static/img/equipment.png",
  129. "selectedIconPath": "static/img/equipmentHL.png",
  130. "text": "机器状态"
  131. },
  132. {
  133. "pagePath": "pages/User/user",
  134. "iconPath": "static/img/user.png",
  135. "selectedIconPath": "static/img/userHL.png",
  136. "text": "我的"
  137. }
  138. ]
  139. }
  140. }