NowData.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <template>
  2. <div
  3. class="NowData"
  4. :class="[
  5. screenType === 'hor'
  6. ? 'horizontalClass'
  7. : 'verticalClass verticalNowData',
  8. ]"
  9. >
  10. <div class="head-title">
  11. <span>实时数据</span>
  12. <div class="normal-explain">
  13. <span class="title-right-icon"></span>
  14. <span>正常范围</span>
  15. </div>
  16. </div>
  17. <div class="subhead-title">主动式空调,会呼吸的写字楼</div>
  18. <div class="contain">
  19. <div class="item" v-for="(item, index) in realDataArr" :key="index">
  20. <div class="item_content">
  21. <img
  22. :class="[screenType === 'hor' ? '' : 'vert']"
  23. :src="item.img"
  24. alt=""
  25. />
  26. <div class="content_value">
  27. <span>{{ item.value }}</span
  28. ><span>{{ item.unit }}</span>
  29. </div>
  30. <div class="content_name">
  31. <span>{{ item.name }}</span>
  32. </div>
  33. <div
  34. class="content_level"
  35. :style="{
  36. backgroundColor: selectColor(item.value, item.id),
  37. }"
  38. :class="item.level"
  39. ></div>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </template>
  45. <script>
  46. import icon_temp from "@/assets/icon_temp.png";
  47. import icon_humidity from "@/assets/icon_humidity.png";
  48. import icon_CO2 from "@/assets/icon_CO2.png";
  49. import icon_formaldehyde from "@/assets/icon_formaldehyde.png";
  50. import icon_PM2d5 from "@/assets/icon_PM2d5.png";
  51. import { selectColor } from "@/utils/publicMethod";
  52. import { mapState, mapActions } from "vuex";
  53. export default {
  54. props: {
  55. screenType: {
  56. type: String,
  57. default: () => {
  58. return "hor";
  59. }, //hor 横屏 vert 竖屏
  60. },
  61. },
  62. data() {
  63. return {
  64. intervalInt: null,
  65. };
  66. },
  67. watch: {
  68. // "$store.state.realTimeData"(newv, oldv) {
  69. // //debugger;
  70. // this.realData.forEach(function(item) {
  71. // item.value = newv[item.id];
  72. // });
  73. // },
  74. realDataArr(newv, oldv) {
  75. // debugger;
  76. },
  77. },
  78. mounted() {
  79. this.getRealTimeData(); //实时数据
  80. this.intervalInt = setInterval(() => {
  81. this.getRealTimeData(); //实时数据
  82. }, 60000);
  83. },
  84. computed: {
  85. ...mapState({
  86. realDataArr(state) {
  87. //获取数据realTimeData后的处理
  88. var realTimeData = state.realTimeData;
  89. var realInit = [
  90. {
  91. id: "temp",
  92. code: "Tdb",
  93. name: "温度",
  94. img: icon_temp,
  95. //value: 24.5,
  96. unit: "℃",
  97. level: "low",
  98. fixed: 1,
  99. },
  100. {
  101. id: "humidity",
  102. name: "湿度",
  103. code: "RH",
  104. img: icon_humidity,
  105. // value: 33,
  106. unit: "%",
  107. level: "middle",
  108. fixed: 0,
  109. },
  110. {
  111. id: "co2",
  112. name: "CO2",
  113. code: "CO2",
  114. img: icon_CO2,
  115. // value: 2399,
  116. unit: "ppm",
  117. level: "low",
  118. fixed: 0,
  119. },
  120. {
  121. id: "methanal",
  122. code: "HCHO",
  123. name: "甲醛",
  124. img: icon_formaldehyde,
  125. // value: 0.12,
  126. unit: "mg/m³",
  127. level: "low",
  128. fixed: 2,
  129. },
  130. {
  131. id: "pm25",
  132. code: "PM2d5",
  133. name: "PM2.5",
  134. img: icon_PM2d5,
  135. // value: 100,
  136. unit: "ug/m³",
  137. level: "low",
  138. fixed: 0,
  139. },
  140. ];
  141. realInit.forEach((item) => {
  142. var filterRes = realTimeData.filter((ele) => {
  143. return ele.code == item.code;
  144. });
  145. var value = (filterRes[0] || {}).data;
  146. item.value = value
  147. ? Number(value.toFixed(item.fixed))
  148. : value;
  149. });
  150. return realInit;
  151. },
  152. }),
  153. },
  154. destroyed() {
  155. console.log('nowdata-destory');
  156. clearInterval(this.intervalInt);
  157. },
  158. methods: {
  159. ...mapActions(["getRealTimeData"]),
  160. selectColor: selectColor,
  161. },
  162. };
  163. </script>
  164. <style lang="less" scoped>
  165. .NowData {
  166. &.horizontalClass {
  167. //width: 1508px;
  168. height: 498px;
  169. }
  170. .head-title {
  171. justify-content: space-between;
  172. }
  173. .title-right-icon {
  174. display: inline-block;
  175. padding: 0;
  176. width: 12px;
  177. height: 12px;
  178. margin-right: 8px;
  179. border-radius: 50%;
  180. background: rgba(126, 216, 116, 1);
  181. }
  182. .contain {
  183. display: flex;
  184. padding-top: 47px;
  185. }
  186. .item {
  187. width: calc(100% / 5);
  188. .item_content {
  189. // height: 100%;
  190. display: flex;
  191. flex-direction: column;
  192. justify-content: center;
  193. align-items: center;
  194. text-align: center;
  195. img {
  196. width: 150px;
  197. height: 150px;
  198. &.vert {
  199. width: 130px;
  200. height: 130px;
  201. }
  202. }
  203. .content_value {
  204. font-family: Persagy;
  205. font-size: 42px;
  206. font-weight: 700;
  207. margin-top: 10px;
  208. color: rgba(59, 53, 88, 1);
  209. }
  210. .content_name {
  211. margin-top: 8px;
  212. font-family: PingFang SC;
  213. font-size: 24px;
  214. font-weight: 400;
  215. line-height: 34px;
  216. }
  217. }
  218. }
  219. .content_level {
  220. margin-top: 8px;
  221. margin-right: 8px;
  222. box-sizing: border-box;
  223. width: 16px;
  224. height: 16px;
  225. border-radius: 50%;
  226. background: rgba(126, 216, 116, 1);
  227. &.middle {
  228. background: rgba(239, 214, 46, 1);
  229. }
  230. }
  231. .normal-explain {
  232. display: flex;
  233. align-items: center;
  234. font-size: 14px;
  235. }
  236. &.verticalNowData {
  237. height: 460px;
  238. .item {
  239. .item_content {
  240. .content_value {
  241. font-size: 32px;
  242. }
  243. .content_name {
  244. margin-top: 12px;
  245. font-size: 20px;
  246. }
  247. .content_level {
  248. margin-top: 12px;
  249. }
  250. }
  251. }
  252. }
  253. }
  254. </style>