fireWarn.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. <template>
  2. <customHeader :options="options" @change="getSelectRow" :optionValue="optionValue"> 火灾监测预警 </customHeader>
  3. <div class="fireWarn">
  4. <a-button
  5. v-if="!hasPermission('fireWarn:return')"
  6. preIcon="ant-design:rollback-outlined"
  7. type="text"
  8. size="small"
  9. style="position: absolute; left: 15px; top: 15px; color: var(--vent-font-color)"
  10. @click="getBack"
  11. >返回</a-button
  12. >
  13. <div class="alarm-menu">
  14. <div class="type-btn">
  15. <div :class="activeIndex == index ? 'btn1' : 'btn'" v-for="(item, index) in typeMenuList" :key="index" @click="fireMenuToggle(index)">
  16. {{ item.name }}
  17. </div>
  18. </div>
  19. <div class="card-btn">
  20. <div :class="activeIndex1 == ind ? 'btn1' : 'btn'" v-for="(item, ind) in menuList" :key="ind" @click="cardClick(ind, item)">
  21. <div class="text">{{ item.name }}</div>
  22. <div class="warn">{{ item.warn }}</div>
  23. </div>
  24. </div>
  25. </div>
  26. <div class="fire-content">
  27. <a-spin :spinning="loading">
  28. <component :is="componentName[currentLoad]" :listData="listData" :strType="strType" :tableList="tableLists" />
  29. </a-spin>
  30. </div>
  31. </div>
  32. </template>
  33. <script setup lang="ts">
  34. import { ref, reactive, onMounted, onUnmounted, defineAsyncComponent } from 'vue';
  35. import { typeMenuList, componentName } from '../common.data';
  36. import { sysTypeWarnList, sysWarn } from '../common.api';
  37. import { useSystemSelect } from '/@/hooks/vent/useSystemSelect';
  38. import { useGlobSetting } from '/@/hooks/setting';
  39. import { useRouter } from 'vue-router';
  40. import CustomHeader from '/@/components/vent/customHeader.vue';
  41. import { usePermission } from '/@/hooks/web/usePermission';
  42. let loading = ref(false); //加载状态
  43. const { hasPermission } = usePermission();
  44. const { options, optionValue, getSelectRow, getSysDataSource } = useSystemSelect('sys_surface_caimei'); // 参数为场景类型(设备类型管理中可以查询到)
  45. //当前加载组件
  46. let currentLoad = ref('');
  47. //内外因火灾激活索引
  48. let activeIndex = ref(0);
  49. //当前激活菜单的索引
  50. let activeIndex1 = ref(0);
  51. let menuList = reactive<any[]>([]); //左侧菜单列表
  52. let menuList1 = reactive({
  53. external: [],
  54. internal: [],
  55. info: [],
  56. });
  57. //详情数据
  58. let listData = reactive({
  59. common: {},
  60. bundletube: [],
  61. fiber: [],
  62. fire: [],
  63. co: [],
  64. smoke: [],
  65. spray: [],
  66. temperature: [],
  67. }); //详情数据
  68. let strType = ref(''); //火灾外因-区别工作面和煤层
  69. let router = useRouter();
  70. let tableLists = ref<any[]>([]);
  71. // https获取监测数据
  72. let timer: null | NodeJS.Timeout = null;
  73. function getMonitor(deviceID, flag?) {
  74. timer = setTimeout(
  75. async () => {
  76. await getSysWarnList(deviceID, 'fire');
  77. if (timer) {
  78. timer = null;
  79. }
  80. getMonitor(deviceID);
  81. },
  82. flag ? 0 : 1000
  83. );
  84. }
  85. //返回首页
  86. function getBack() {
  87. router.push('/monitorChannel/monitor-alarm-home');
  88. }
  89. //获取左侧菜单列表
  90. async function getMenuList() {
  91. let res = await sysTypeWarnList({ type: 'fire' });
  92. if (res.length != 0) {
  93. menuList.length = 0;
  94. menuList1.external = res.external;
  95. menuList1.internal = res.internal;
  96. menuList1.info = res.info;
  97. if (menuList1.internal && menuList1.internal.length > 0) {
  98. menuList1.internal.forEach((el) => {
  99. menuList.push({
  100. name: el.systemname,
  101. warn: '低风险',
  102. type: 'on',
  103. deviceID: el.id,
  104. strtype: el.strtype,
  105. });
  106. });
  107. }
  108. getMonitor(menuList[0].deviceID, true);
  109. }
  110. }
  111. //获取预警详情弹窗右侧数据
  112. function getSysWarnList(id, type) {
  113. sysWarn({ sysid: id, type: type }).then((res) => {
  114. listData.bundletube = res.bundletube;
  115. listData.fiber = res.fiber;
  116. listData.fire = res.fire;
  117. listData.co = res.co;
  118. listData.smoke = res.smoke;
  119. listData.spray = res.spray;
  120. listData.temperature = res.temperature;
  121. loadZj();
  122. });
  123. }
  124. //内外因火灾、预警指标选项切换
  125. function fireMenuToggle(ind) {
  126. activeIndex.value = ind;
  127. switch (ind) {
  128. case 0:
  129. loading.value = true;
  130. setTimeout(() => {
  131. activeIndex1.value = 0;
  132. menuList.length = 0;
  133. getClearList();
  134. clearTimeout(timer);
  135. currentLoad.value = '';
  136. menuList1.internal.forEach((el) => {
  137. menuList.push({
  138. name: el.systemname,
  139. warn: '低风险',
  140. type: 'on',
  141. deviceID: el.id,
  142. strtype: el.strtype,
  143. });
  144. });
  145. getMonitor(menuList[0].deviceID, true);
  146. loading.value = false;
  147. }, 1000);
  148. break;
  149. case 1:
  150. loading.value = true;
  151. setTimeout(() => {
  152. activeIndex1.value = 0;
  153. menuList.length = 0;
  154. clearTimeout(timer);
  155. getClearList();
  156. currentLoad.value = '';
  157. if (menuList1.external.length != 0) {
  158. menuList1.external.forEach((el) => {
  159. menuList.push({
  160. name: el.systemname,
  161. warn: '低风险',
  162. type: 'out',
  163. deviceID: el.id,
  164. strtype: el.strtype,
  165. });
  166. });
  167. getMonitor(menuList[0].deviceID, true);
  168. strType.value = menuList[0].strtype;
  169. } else {
  170. menuList.length = 0;
  171. clearTimeout(timer);
  172. currentLoad.value = '';
  173. }
  174. loading.value = false;
  175. }, 1000);
  176. break;
  177. case 2:
  178. clearTimeout(timer);
  179. menuList.length = 0;
  180. activeIndex1.value = 0;
  181. menuList1.info.forEach((el) => {
  182. menuList.push({
  183. name: el.sysname,
  184. warn: '正常',
  185. deviceID: el.sysid,
  186. strtype: '',
  187. });
  188. });
  189. loadZb();
  190. break;
  191. }
  192. }
  193. //加载预警指标组件
  194. function loadZb() {
  195. loading.value = true;
  196. setTimeout(() => {
  197. tableLists.value = menuList1.info[0].list;
  198. const { sysOrgCode } = useGlobSetting();
  199. switch (sysOrgCode) {
  200. case 'sdmtjtbdmk': // 宝德
  201. currentLoad.value = 'warnFireBd';
  202. return currentLoad.value;
  203. case 'sdmtjtbetmk': // 布尔台
  204. currentLoad.value = 'warnFireBrt';
  205. return currentLoad.value;
  206. default:
  207. currentLoad.value = 'warnFireBrt';
  208. loading.value = false;
  209. return currentLoad.value;
  210. }
  211. }, 1000);
  212. }
  213. //菜单选项切换
  214. function cardClick(ind, item) {
  215. if (activeIndex.value != 2) {
  216. loading.value = true;
  217. setTimeout(() => {
  218. activeIndex1.value = ind;
  219. clearTimeout(timer);
  220. getClearList();
  221. strType.value = item.strtype;
  222. currentLoad.value = '';
  223. getMonitor(item.deviceID, true);
  224. loading.value = false;
  225. }, 1000);
  226. } else {
  227. loading.value = true;
  228. setTimeout(() => {
  229. clearTimeout(timer);
  230. activeIndex1.value = ind;
  231. tableLists.value = menuList1.info[ind].list;
  232. loading.value = false;
  233. }, 1000);
  234. }
  235. }
  236. //加载组件
  237. function loadZj() {
  238. if (!activeIndex.value && listData.fiber.length != 0 && listData.bundletube.length != 0) {
  239. currentLoad.value = 'fireWork';
  240. } else if (!activeIndex.value && listData.bundletube.length != 0) {
  241. currentLoad.value = 'closeWall';
  242. } else if (activeIndex.value && activeIndex.value != 2) {
  243. currentLoad.value = 'mainWell';
  244. } else {
  245. currentLoad.value = '';
  246. }
  247. }
  248. //清空数据
  249. function getClearList() {
  250. listData.common = {};
  251. listData.bundletube.length = 0;
  252. listData.fiber.length = 0;
  253. listData.fire.length = 0;
  254. listData.co.length = 0;
  255. listData.smoke.length = 0;
  256. listData.spray.length = 0;
  257. listData.temperature.length = 0;
  258. }
  259. onMounted(() => {
  260. getMenuList();
  261. });
  262. onUnmounted(() => {
  263. if (timer) {
  264. clearTimeout(timer);
  265. timer = undefined;
  266. }
  267. });
  268. </script>
  269. <style lang="less" scoped>
  270. @import '/@/design/theme.less';
  271. @{theme-deepblue} {
  272. .fireWarn {
  273. --image-no-choice: url('/@/assets/images/themify/deepblue/fire/no-choice.png');
  274. --image-choice: url('/@/assets/images/themify/deepblue/fire/choice.png');
  275. --image-border: url('/@/assets/images/themify/deepblue/fire/border.png');
  276. }
  277. }
  278. .fireWarn {
  279. --image-no-choice: url('/@/assets/images/fire/no-choice.png');
  280. --image-choice: url('/@/assets/images/fire/choice.png');
  281. --image-border: url('/@/assets/images/fire/border.png');
  282. width: 100%;
  283. height: 100%;
  284. padding: 80px 10px 15px 10px;
  285. box-sizing: border-box;
  286. display: flex;
  287. justify-content: space-between;
  288. .alarm-menu {
  289. height: 100%;
  290. width: 15%;
  291. .type-btn {
  292. width: 100%;
  293. height: 28px;
  294. line-height: 28px;
  295. background-color: var(--vent-warn-tab-bg);
  296. border: 2px solid var(--vent-warn-tab-border);
  297. margin-bottom: 20px;
  298. border-radius: 5px;
  299. box-sizing: border-box;
  300. display: flex;
  301. justify-content: space-between;
  302. .btn {
  303. width: 33%;
  304. height: 24px;
  305. line-height: 24px;
  306. font-size: 14px;
  307. text-align: center;
  308. color: var(--vent-font-color);
  309. cursor: pointer;
  310. }
  311. .btn1 {
  312. width: 33%;
  313. height: 24px;
  314. line-height: 24px;
  315. font-size: 14px;
  316. color: var(--vent-font-color);
  317. text-align: center;
  318. border-radius: 2px;
  319. background: var(--vent-warn-tab-bg-actived);
  320. cursor: pointer;
  321. }
  322. }
  323. .card-btn {
  324. width: 100%;
  325. height: calc(100% - 48px);
  326. overflow-y: auto;
  327. .btn {
  328. position: relative;
  329. width: 81%;
  330. height: 14%;
  331. margin-bottom: 10%;
  332. font-family: 'douyuFont';
  333. background: var(--image-no-choice) no-repeat;
  334. background-size: 100% 100%;
  335. cursor: pointer;
  336. .text {
  337. width: 80%;
  338. position: absolute;
  339. left: 50%;
  340. top: 28px;
  341. font-size: 16px;
  342. color: var(--vent-table-action-link);
  343. text-align: center;
  344. transform: translate(-50%, 0);
  345. }
  346. .warn {
  347. width: 100%;
  348. position: absolute;
  349. left: 50%;
  350. bottom: 14px;
  351. font-size: 14px;
  352. color: var(--vent-font-color);
  353. text-align: center;
  354. transform: translate(-50%, 0);
  355. }
  356. }
  357. .btn1 {
  358. position: relative;
  359. width: 100%;
  360. height: 14%;
  361. margin-bottom: 10%;
  362. font-family: 'douyuFont';
  363. background: var(--image-choice) no-repeat;
  364. background-size: 100% 100%;
  365. cursor: pointer;
  366. .text {
  367. width: 80%;
  368. position: absolute;
  369. left: 50%;
  370. top: 28px;
  371. font-size: 16px;
  372. color: var(--vent-table-action-link);
  373. text-align: center;
  374. transform: translate(-62%, 0);
  375. }
  376. .warn {
  377. width: 100%;
  378. position: absolute;
  379. left: 50%;
  380. bottom: 14px;
  381. font-size: 14px;
  382. color: var(--vent-font-color);
  383. text-align: center;
  384. transform: translate(-60%, 0);
  385. }
  386. }
  387. }
  388. }
  389. .fire-content {
  390. width: calc(85% - 10px);
  391. height: 100%;
  392. margin-left: 10px;
  393. background: var(--image-border) no-repeat;
  394. background-size: 100% 100%;
  395. }
  396. }
  397. ::v-deep .zxm-spin-nested-loading {
  398. height: 100%;
  399. }
  400. ::v-deep .zxm-spin-container {
  401. height: 100%;
  402. }
  403. </style>