ventilateWarn.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621
  1. <template>
  2. <customHeader :options="options" @change="getSelectRow" :optionValue="optionValue"> 通风监测预警 </customHeader>
  3. <div class="ventilateWarn">
  4. <div class="ventilate-top">
  5. <a-button v-if="!hasPermission('ventilateWarn:return')" preIcon="ant-design:rollback-outlined" type="text"
  6. size="small" style="position: absolute; left: 15px; top: 15px; color: #fff" @click="getBack">返回</a-button>
  7. <div class="alarm-menu">
  8. <div class="card-btn">
  9. <div :class="activeIndex1 == ind ? 'btn1' : 'btn'" v-for="(item, ind) in menuList" :key="ind"
  10. @click="cardClick(ind, item)">
  11. <div class="text">{{ item.name }}</div>
  12. <div class="warn">{{ item.warn }}</div>
  13. </div>
  14. </div>
  15. </div>
  16. <div class="ventilate-content">
  17. <div class="work-nav">
  18. <div class="nav" v-for="(item, index) in ventilateTopList" :key="index">
  19. <div class="pic" v-if="item.imgSrc"></div>
  20. <div class="content" v-if="item.label && item.value">
  21. <span>{{ item.label }}</span>
  22. <span>{{ item.value }}</span>
  23. </div>
  24. <div :style="{ color: item.text == '正常' ? '#00d8ff' : '#ff2313' }"
  25. style="width: 100%; padding: 0px 10px; text-align: center; font-weight: bold" v-if="item.text">{{
  26. item.text }}</div>
  27. <div class="percent" v-if="item.list.length != 0">
  28. <div class="title">{{ item.label }}</div>
  29. <div class="value">
  30. <div class="content-box" v-for="(items, ind) in item.list" :key="ind">
  31. <span style="color: #b3b8cc">{{ `${items.label} :` }}</span>
  32. <span style="color: #3df6ff; margin-left: 10px">{{ items.value }}</span>
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. <div class="bot-area">
  39. <div class="title-t">
  40. <div class="text-t">通风信息状态监测</div>
  41. </div>
  42. <div class="echart-boxd">
  43. <echartLine :echartDataGq="echartDataFc1" :maxY="maxY" :echartDw="echartDw" />
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. <div class="ventilate-bottom">
  49. <div class="bot-area">
  50. <div class="title-b">
  51. <div class="text-b">通风监控测点信息</div>
  52. </div>
  53. <div class="content-b">
  54. <div class="card-b" v-for="(item, index) in cardListTf" :key="index">
  55. <div class="item-l">
  56. <div class="label-l">{{ item.label }}</div>
  57. <div class="value-l">{{ item.value }}</div>
  58. </div>
  59. <div class="item-r">
  60. <div class="content-r" v-for="(items, ind) in item.listR" :key="ind">
  61. <span>{{ `${items.label} : ` }}</span>
  62. <span :class="{
  63. 'status-f': items.value == 1,
  64. 'status-l': items.value == 0,
  65. }">{{ `${items.value}${items.dw}` }}</span>
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. </template>
  74. <script setup lang="ts">
  75. import { ref, reactive, onMounted, onUnmounted } from 'vue';
  76. import { useSystemSelect } from '/@/hooks/vent/useSystemSelect';
  77. import { useRouter } from 'vue-router';
  78. import { sysTypeWarnList, sysWarn, getDevice } from '../common.api';
  79. import { ventilateTopList } from '../common.data';
  80. import CustomHeader from '/@/components/vent/customHeader.vue';
  81. import echartLine from '../common/echartLine.vue';
  82. import { usePermission } from '/@/hooks/web/usePermission';
  83. const { hasPermission } = usePermission();
  84. const { options, optionValue, getSelectRow, getSysDataSource } = useSystemSelect('sys_surface_caimei'); // 参数为场景类型(设备类型管理中可以查询到)
  85. let router = useRouter();
  86. //左侧数据列表
  87. let menuList = reactive<any[]>([]);
  88. //当前左侧激活菜单的索引
  89. let activeIndex1 = ref(0);
  90. let maxY = ref<any>(0);
  91. let echartDw = ref('(m³/min)');
  92. //通风图表数据
  93. const echartDataFc1 = reactive({
  94. maxData: {
  95. lengedData: '进风量',
  96. data: [],
  97. },
  98. minData: {
  99. lengedData: '回风量',
  100. data: [],
  101. },
  102. aveValue: {
  103. lengedData: '需风量',
  104. data: [],
  105. },
  106. xData: [],
  107. });
  108. let cardListTf = reactive<any[]>([]);
  109. // https获取监测数据
  110. let timer: null | NodeJS.Timeout = null;
  111. function getMonitor(deviceID, flag?) {
  112. timer = setTimeout(
  113. async () => {
  114. await getSysWarnList(deviceID, 'vent');
  115. if (timer) {
  116. timer = null;
  117. }
  118. getMonitor(deviceID);
  119. },
  120. flag ? 0 : 1000
  121. );
  122. }
  123. //返回首页
  124. function getBack() {
  125. router.push('/monitorChannel/monitor-alarm-home');
  126. }
  127. //获取左侧数据列表
  128. async function getMenuList() {
  129. let res = await sysTypeWarnList({ type: 'vent' });
  130. console.log(res, '通风预警监测左侧列表数据-------------');
  131. if (res.length != 0) {
  132. menuList.length = 0;
  133. res.forEach((el) => {
  134. menuList.push({
  135. name: el.deviceName,
  136. warn: '低风险',
  137. deviceID: el.deviceID,
  138. strtype: el.deviceType,
  139. });
  140. });
  141. getMonitor(menuList[0].deviceID, true);
  142. }
  143. }
  144. //菜单选项切换
  145. function cardClick(ind, item) {
  146. activeIndex1.value = ind;
  147. clearTimeout(timer);
  148. getMonitor(item.deviceID, true);
  149. }
  150. //获取预警详情弹窗右侧数据
  151. function getSysWarnList(id, type) {
  152. sysWarn({ sysid: id, type: type }).then((res) => {
  153. echartDataFc1.maxData.data.length = 0;
  154. echartDataFc1.minData.data.length = 0;
  155. echartDataFc1.aveValue.data.length = 0;
  156. echartDataFc1.xData.length = 0;
  157. if (JSON.stringify(res) != '{}') {
  158. ventilateTopList[0].value = res.jin || '--';
  159. ventilateTopList[1].value = res.hui || '--';
  160. ventilateTopList[2].value = res.xufengliang || '--';
  161. ventilateTopList[3].text = res.warnFlag ? res.warnDes : '正常';
  162. if (res.history.length != 0) {
  163. res.history.forEach((v) => {
  164. echartDataFc1.maxData.data.push(parseFloat(v.jin));
  165. echartDataFc1.minData.data.push(parseFloat(v.hui));
  166. if (ventilateTopList[2].value && ventilateTopList[2].value != '--') {
  167. echartDataFc1.aveValue.data.push(ventilateTopList[2].value);
  168. } else {
  169. echartDataFc1.aveValue.data.push(0);
  170. }
  171. echartDataFc1.xData.push(v.time);
  172. });
  173. }
  174. let max1 = echartDataFc1.maxData.data.reduce((acr, cur) => {
  175. return acr > cur ? acr : cur;
  176. });
  177. let max2 = echartDataFc1.minData.data.reduce((acr1, cur1) => {
  178. return acr1 > cur1 ? acr1 : cur1;
  179. });
  180. maxY.value = max1 >= max2 ? max1 : max2;
  181. console.log(maxY.value,'000')
  182. maxY.value = maxY.value.toString().indexOf('.') == -1 ? maxY.value.toString() : maxY.value.toString().substring(0, maxY.value.toString().indexOf('.'))
  183. if (maxY.value.length < 2) {
  184. maxY.value = 10
  185. } else if (maxY.value.length < 3) {
  186. maxY.value = (Number(maxY.value[0])+1) * 10
  187. } else if (maxY.value.length < 4) {
  188. maxY.value = (Number(maxY.value[0])+1) * 100
  189. } else if (maxY.value.length < 5) {
  190. maxY.value = (Number(maxY.value[0])+1) * 1000
  191. } else if (maxY.value.length < 6) {
  192. maxY.value = (Number(maxY.value[0])+1) * 10000
  193. }
  194. }
  195. });
  196. }
  197. //获取通风监控测点信息
  198. async function getWindDeviceList() {
  199. cardListTf.length = 0;
  200. let res = await getDevice({ devicetype: 'windrect', pagetype: 'normal' });
  201. if (res && res.msgTxt[0]) {
  202. let list = res.msgTxt[0].datalist || [];
  203. if (list.length > 0) {
  204. list.forEach((el: any) => {
  205. const readData = el.readData;
  206. el = Object.assign(el, readData);
  207. cardListTf.push({
  208. label: '通信状态',
  209. value: el.netStatus == '0' ? '断开' : '连接',
  210. listR: [
  211. { id: 0, label: '安装位置', dw: '', value: el.strinstallpos },
  212. { id: 1, label: '风量', dw: '(m³/min)', value: el.m3 },
  213. { id: 2, label: '风速', dw: '(m/s)', value: el.va },
  214. { id: 4, label: '时间', dw: '', value: el.readTime },
  215. {
  216. id: 3,
  217. label: '是否报警',
  218. dw: '',
  219. value: el.warnFlag == '0' ? '正常' : el.warnFlag == 1 ? '报警' : el.warnFlag == 2 ? '断开' : '未监测',
  220. },
  221. ],
  222. });
  223. });
  224. }
  225. }
  226. }
  227. onMounted(() => {
  228. getMenuList();
  229. getWindDeviceList();
  230. });
  231. onUnmounted(() => {
  232. if (timer) {
  233. clearTimeout(timer);
  234. timer = undefined;
  235. }
  236. });
  237. </script>
  238. <style lang="less" scoped>
  239. .ventilateWarn {
  240. width: 100%;
  241. height: 100%;
  242. padding: 80px 10px 15px 10px;
  243. box-sizing: border-box;
  244. .ventilate-top {
  245. display: flex;
  246. justify-content: space-between;
  247. height: 50%;
  248. margin-bottom: 15px;
  249. background: url('../../../../../assets/images/fire/border.png') no-repeat center;
  250. background-size: 100% 100%;
  251. .alarm-menu {
  252. height: 100%;
  253. width: 15%;
  254. padding: 10px;
  255. box-sizing: border-box;
  256. .card-btn {
  257. width: 100%;
  258. height: 100%;
  259. overflow-y: auto;
  260. .btn {
  261. position: relative;
  262. width: 81%;
  263. height: 24%;
  264. margin-bottom: 6%;
  265. font-family: 'douyuFont';
  266. background: url('../../../../../assets/images/fire/no-choice.png') no-repeat;
  267. background-size: 100% 100%;
  268. cursor: pointer;
  269. .text {
  270. width: 80%;
  271. position: absolute;
  272. left: 50%;
  273. top: 28px;
  274. font-size: 14px;
  275. color: #01fefc;
  276. text-align: center;
  277. transform: translate(-50%, 0);
  278. }
  279. .warn {
  280. width: 100%;
  281. position: absolute;
  282. left: 50%;
  283. bottom: 11px;
  284. font-size: 12px;
  285. color: #fff;
  286. text-align: center;
  287. transform: translate(-50%, 0);
  288. }
  289. }
  290. .btn1 {
  291. position: relative;
  292. width: 100%;
  293. height: 24%;
  294. margin-bottom: 6%;
  295. font-family: 'douyuFont';
  296. background: url('../../../../../assets/images/fire/choice.png') no-repeat;
  297. background-size: 100% 100%;
  298. cursor: pointer;
  299. .text {
  300. width: 80%;
  301. position: absolute;
  302. left: 50%;
  303. top: 28px;
  304. font-size: 14px;
  305. color: #01fefc;
  306. text-align: center;
  307. transform: translate(-62%, 0);
  308. }
  309. .warn {
  310. width: 100%;
  311. position: absolute;
  312. left: 50%;
  313. bottom: 11px;
  314. font-size: 14px;
  315. color: #fff;
  316. text-align: center;
  317. transform: translate(-60%, 0);
  318. }
  319. }
  320. }
  321. }
  322. .ventilate-content {
  323. height: 100%;
  324. width: 85%;
  325. padding: 10px 0px;
  326. box-sizing: border-box;
  327. .work-nav {
  328. height: 30%;
  329. width: 100%;
  330. background: url('../../../../../assets/images/fire/bj1.png') no-repeat center;
  331. background-size: 100% 100%;
  332. display: flex;
  333. justify-content: space-between;
  334. align-items: center;
  335. border-bottom: 3px solid;
  336. border-image: linear-gradient(to bottom, rgba(45, 116, 160, 1), rgba(45, 116, 160, 0.2), rgba(45, 116, 160, 1)) 1 1 1;
  337. .nav {
  338. display: flex;
  339. justify-content: center;
  340. align-items: center;
  341. &:nth-child(1) {
  342. flex: 1;
  343. height: 100%;
  344. border-right: 2px solid;
  345. border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
  346. }
  347. &:nth-child(2) {
  348. flex: 1;
  349. height: 100%;
  350. border-right: 2px solid;
  351. border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
  352. }
  353. &:nth-child(3) {
  354. flex: 1;
  355. height: 100%;
  356. border-right: 2px solid;
  357. border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
  358. }
  359. &:nth-child(4) {
  360. flex: 0.6;
  361. color: #b3b8cc;
  362. font-size: 16px;
  363. height: 100%;
  364. border-right: 2px solid;
  365. border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
  366. }
  367. &:nth-child(5) {
  368. flex: 1.4;
  369. height: 100%;
  370. .percent {
  371. width: 100%;
  372. height: 82%;
  373. padding: 0px 20px;
  374. box-sizing: border-box;
  375. display: flex;
  376. flex-direction: column;
  377. justify-content: space-around;
  378. .title {
  379. font-size: 14px;
  380. padding: 5px 0px;
  381. color: #b3b8cc;
  382. text-align: center;
  383. }
  384. .value {
  385. display: flex;
  386. justify-content: space-between;
  387. span {
  388. font-family: 'douyuFont';
  389. font-size: 18px;
  390. }
  391. }
  392. }
  393. }
  394. .pic {
  395. width: 30%;
  396. height: 82%;
  397. }
  398. .content {
  399. height: 82%;
  400. margin-left: 15px;
  401. color: #fff;
  402. display: flex;
  403. flex-direction: column;
  404. justify-content: space-around;
  405. span {
  406. font-size: 14px;
  407. &:nth-child(1) {
  408. padding: 5px 0px;
  409. color: #b3b8cc;
  410. }
  411. &:nth-child(2) {
  412. font-family: 'douyuFont';
  413. font-size: 16px;
  414. color: #3df6ff;
  415. }
  416. }
  417. }
  418. }
  419. .nav:nth-child(1) .pic {
  420. background: url('../../../../../assets/images/fire/jinfengliang.png') no-repeat center;
  421. background-size: 100% 100%;
  422. }
  423. .nav:nth-child(2) .pic {
  424. background: url('../../../../../assets/images/fire/huifengliang.png') no-repeat center;
  425. background-size: 100% 100%;
  426. }
  427. .nav:nth-child(3) .pic {
  428. background: url('../../../../../assets/images/fire/xufengliang.png') no-repeat center;
  429. background-size: 100% 100%;
  430. }
  431. }
  432. .bot-area {
  433. height: calc(100% - 30% - 3px);
  434. padding: 10px;
  435. background: url('../../../../../assets/images/fire/bj1.png') no-repeat;
  436. background-size: 100% 100%;
  437. box-sizing: border-box;
  438. .title-t {
  439. height: 30px;
  440. display: flex;
  441. justify-content: space-between;
  442. align-items: center;
  443. .text-t {
  444. font-family: 'douyuFont';
  445. font-size: 14px;
  446. color: #fff;
  447. }
  448. }
  449. .echart-boxd {
  450. width: 100%;
  451. height: calc(100% - 30px);
  452. }
  453. }
  454. }
  455. }
  456. .ventilate-bottom {
  457. height: calc(50% - 15px);
  458. background: url('../../../../../assets/images/fire/border.png') no-repeat center;
  459. background-size: 100% 100%;
  460. padding: 10px;
  461. box-sizing: border-box;
  462. .bot-area {
  463. height: 100%;
  464. padding: 10px;
  465. background: url('../../../../../assets/images/fire/bj1.png') no-repeat center;
  466. background-size: 100% 100%;
  467. box-sizing: border-box;
  468. .title-b {
  469. height: 30px;
  470. margin-bottom: 10px;
  471. display: flex;
  472. justify-content: space-between;
  473. align-items: center;
  474. .text-b {
  475. font-family: 'douyuFont';
  476. font-size: 14px;
  477. color: #fff;
  478. }
  479. }
  480. .content-b {
  481. height: calc(100% - 40px);
  482. display: flex;
  483. justify-content: flex-start;
  484. align-items: flex-start;
  485. flex-wrap: wrap;
  486. overflow-y: auto;
  487. .card-b {
  488. position: relative;
  489. width: 24%;
  490. height: 128px;
  491. margin: 0px 9px 10px 9px;
  492. background: url(/src/assets/images/fire/bot-area.png) no-repeat center;
  493. background-size: 100% 100%;
  494. .item-l {
  495. position: absolute;
  496. left: 32px;
  497. top: 50%;
  498. transform: translate(0, -50%);
  499. width: 89px;
  500. height: 98px;
  501. background: url('../../../../../assets/images/fire/bot-area1.png') no-repeat center;
  502. .label-l {
  503. width: 100%;
  504. position: absolute;
  505. top: 7px;
  506. color: #fff;
  507. font-size: 12px;
  508. text-align: center;
  509. }
  510. .value-l {
  511. width: 100%;
  512. position: absolute;
  513. top: 50px;
  514. font-family: 'douyuFont';
  515. font-size: 14px;
  516. color: #3df6ff;
  517. text-align: center;
  518. }
  519. }
  520. .item-r {
  521. position: absolute;
  522. left: 132px;
  523. top: 50%;
  524. transform: translate(0, -50%);
  525. height: 128px;
  526. padding: 5px 0px;
  527. display: flex;
  528. flex-direction: column;
  529. justify-content: space-around;
  530. box-sizing: border-box;
  531. .content-r {
  532. display: flex;
  533. span {
  534. font-size: 14px;
  535. color: #fff;
  536. &:first-child {
  537. display: inline-block;
  538. width: 68px;
  539. }
  540. &:last-child {
  541. display: inline-block;
  542. width: calc(100% - 68px);
  543. overflow: hidden;
  544. white-space: nowrap;
  545. /* 不换行 */
  546. /* 超出部分隐藏 */
  547. text-overflow: ellipsis;
  548. /* 使用省略符号 */
  549. }
  550. }
  551. .status-f {
  552. color: #ff0000;
  553. }
  554. .status-l {
  555. color: #3df6ff;
  556. }
  557. }
  558. }
  559. }
  560. }
  561. }
  562. }
  563. }
  564. </style>