pages.json 4.2 KB

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