deviceWarn.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. <template>
  2. <customHeader :options="options" @change="getSelectRow" :optionValue="optionValue"> 设备监测预警 </customHeader>
  3. <div class="alarm-modal">
  4. <a-button
  5. v-if="hasPermission('fan:remote')"
  6. preIcon="ant-design:rollback-outlined"
  7. type="text"
  8. size="small"
  9. style="position: absolute; left: 15px; top: 15px; color: #fff"
  10. @click="getBack"
  11. >返回</a-button
  12. >
  13. <div class="device-type-box">
  14. <div v-for="item in iconsMonitor" :key="item.key" class="device-icon-box">
  15. <img :src="item.url" :alt="item.text" />
  16. </div>
  17. </div>
  18. <a-tabs class="tabs-box" type="card" v-model:activeKey="activeKey" @change="tabChange">
  19. <a-tab-pane key="1" tab="未处理预警">
  20. <div v-if="activeKey == '1'" class="box-bg table-box" style="margin-bottom: 10px">
  21. <MonitorTable
  22. ref="SensorMonitorRef"
  23. :columns="levelColumns"
  24. :dataSource="dataSource"
  25. design-scope="alarm"
  26. :isShowSelect="false"
  27. title="预警监测"
  28. :scroll="{ y: 530 }"
  29. >
  30. <template #filterCell="{ column, record }">
  31. <a-tag v-if="column.dataIndex === 'warnFlag'" :color="record.warnFlag == 0 ? 'green' : 'red'">{{
  32. record.warnFlag == 0 ? '正常' : '报警'
  33. }}</a-tag>
  34. <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == '0' ? '#f00' : 'green'">{{
  35. record.netStatus == '0' ? '断开' : '连接'
  36. }}</a-tag>
  37. </template>
  38. </MonitorTable>
  39. </div>
  40. </a-tab-pane>
  41. <a-tab-pane key="2" tab="报警历史">
  42. <div class="tab-item box-bg">
  43. <AlarmHistoryTable v-if="activeKey == '2'" :columns="levelHisColumns" designScope="alarm-history" />
  44. </div>
  45. </a-tab-pane>
  46. </a-tabs>
  47. </div>
  48. </template>
  49. <script lang="ts" setup>
  50. import { onMounted, ref, defineEmits, reactive, onUnmounted, watch } from 'vue';
  51. import MonitorTable from '../../comment/MonitorTable.vue';
  52. import AlarmHistoryTable from '../alarmHistoryTable.vue';
  53. import CustomHeader from '/@/components/vent/customHeader.vue';
  54. import { warningList } from '../alarm.api';
  55. import { levelColumns, levelHisColumns } from '../alarm.data';
  56. import { useSystemSelect } from '/@/hooks/vent/useSystemSelect';
  57. import { useRouter } from 'vue-router';
  58. import { getAssetURL } from '/@/utils/ui';
  59. import { usePermission } from '/@/hooks/web/usePermission';
  60. // const props = defineProps({
  61. // deviceId: { type: String },
  62. // });
  63. const { hasPermission } = usePermission();
  64. let iconsMonitor = reactive({
  65. // fanmain: {
  66. // url: getAssetURL('home-container/device/zhushan.png'),
  67. // level: 0,
  68. // text: '',
  69. // },
  70. fanmain: {
  71. url: getAssetURL('vent/device/fanmain.png'),
  72. activeUrl: getAssetURL('vent/device/fanmain.png'),
  73. text: '主风机',
  74. key: 'fanmain',
  75. },
  76. fanlocal: {
  77. url: getAssetURL('vent/device/fanlocal.png'),
  78. activeUrl: getAssetURL('vent/device/fanlocal.png'),
  79. text: '',
  80. key: 'fanlocal',
  81. },
  82. gate: {
  83. url: getAssetURL('vent/device/gate.png'),
  84. activeUrl: getAssetURL('vent/device/gate.png'),
  85. text: 'gate',
  86. },
  87. window: {
  88. url: getAssetURL('vent/device/window.png'),
  89. activeUrl: getAssetURL('vent/device/window.png'),
  90. text: '',
  91. key: 'window',
  92. },
  93. windrect: {
  94. url: getAssetURL('vent/device/windrect.png'),
  95. activeUrl: getAssetURL('vent/device/windrect.png'),
  96. text: '',
  97. key: 'windrect',
  98. },
  99. forcFan: {
  100. url: getAssetURL('vent/device/forcFan.png'),
  101. activeUrl: getAssetURL('vent/device/forcFan.png'),
  102. text: '',
  103. key: 'forcFan',
  104. },
  105. spray: {
  106. url: getAssetURL('vent/device/spray.png'),
  107. activeUrl: getAssetURL('vent/device/spray.png'),
  108. text: '',
  109. key: 'spray',
  110. },
  111. dustdev: {
  112. url: getAssetURL('vent/device/dustdev.png'),
  113. activeUrl: getAssetURL('vent/device/dustdev.png'),
  114. text: '',
  115. key: 'dustdev',
  116. },
  117. nitrogen: {
  118. url: getAssetURL('vent/device/nitrogen.png'),
  119. activeUrl: getAssetURL('vent/device/nitrogen.png'),
  120. text: '',
  121. key: 'nitrogen',
  122. },
  123. pulping: {
  124. url: getAssetURL('vent/device/pulping.png'),
  125. activeUrl: getAssetURL('vent/device/pulping.png'),
  126. text: '',
  127. key: 'pulping',
  128. },
  129. atomizing: {
  130. url: getAssetURL('vent/device/atomizing.png'),
  131. activeUrl: getAssetURL('vent/device/atomizing.png'),
  132. text: '',
  133. key: 'atomizing',
  134. },
  135. pump: {
  136. url: getAssetURL('vent/device/pump.png'),
  137. activeUrl: getAssetURL('vent/device/pump.png'),
  138. text: '',
  139. key: 'pump',
  140. },
  141. modelsensor: {
  142. url: getAssetURL('vent/device/modelsensor.png'),
  143. activeUrl: getAssetURL('vent/device/modelsensor.png'),
  144. text: '',
  145. key: 'modelsensor',
  146. },
  147. dustsensor: {
  148. url: getAssetURL('vent/device/dustsensor.png'),
  149. activeUrl: getAssetURL('vent/device/dustsensor.png'),
  150. text: '',
  151. key: 'dustsensor',
  152. },
  153. gas: {
  154. url: getAssetURL('vent/device/gas.png'),
  155. activeUrl: getAssetURL('vent/device/gas.png'),
  156. text: '',
  157. key: 'gas',
  158. },
  159. });
  160. const { options, optionValue, getSelectRow, getSysDataSource } = useSystemSelect('sys_surface_caimei'); // 参数为场景类型(设备类型管理中可以查询到)
  161. // 默认初始是第一行
  162. const activeKey = ref('1');
  163. const dataSource = ref([]);
  164. const tabChange = (activeKeyVal) => {
  165. activeKey.value = activeKeyVal;
  166. };
  167. let router = useRouter();
  168. // https获取监测数据
  169. let timer: null | NodeJS.Timeout = null;
  170. function getMonitor(flag = false) {
  171. if (Object.prototype.toString.call(timer) === '[object Null]') {
  172. timer = setTimeout(
  173. async () => {
  174. await getDataSource();
  175. if (timer) {
  176. timer = null;
  177. }
  178. getMonitor();
  179. },
  180. flag ? 0 : 10000
  181. );
  182. }
  183. }
  184. //返回首页
  185. function getBack() {
  186. router.push('/monitorChannel/monitor-alarm-home');
  187. }
  188. //设备预警监测列表
  189. async function getDataSource() {
  190. const res = await warningList({ isok: 0 });
  191. dataSource.value = res.list || [];
  192. }
  193. onMounted(async () => {
  194. getMonitor(true);
  195. });
  196. onUnmounted(() => {
  197. if (timer) {
  198. clearTimeout(timer);
  199. timer = undefined;
  200. }
  201. });
  202. </script>
  203. <style scoped lang="less">
  204. @import '/@/design/vent/color.less';
  205. @import '/@/design/vent/modal.less';
  206. .padding-0 {
  207. padding: 10px 0 !important;
  208. }
  209. .alarm-modal {
  210. position: relative;
  211. padding: 80px 10px 15px 10px;
  212. box-sizing: border-box;
  213. z-index: 999;
  214. max-height: calc(100% - 150px);
  215. .@{ventSpace}-tabs {
  216. max-height: calc(100% - 100px);
  217. // .tab-item {
  218. // height: 100px;
  219. // // max-height: calc(100vh - 170px);
  220. // }
  221. }
  222. .device-type-box {
  223. width: 1898px;
  224. height: 120px;
  225. color: #fff;
  226. position: absolute;
  227. top: 130px;
  228. // border: 1px solid #4d7ad855;
  229. // border-radius: 2px;
  230. // background-color: #001d3055;
  231. // -webkit-backdrop-filter: blur(8px);
  232. // backdrop-filter: blur(8px);
  233. // box-shadow: 0 0 10px #5984e055 inset;
  234. display: flex;
  235. flex-direction: row;
  236. .device-icon-box {
  237. width: 110px;
  238. height: 110px;
  239. border: 1px solid rgba(25, 237, 255, 0.4);
  240. box-shadow: inset 0 0 20px #00c5ff44;
  241. background: rgba(0, 0, 0, 0.06666667);
  242. margin: 0 8px;
  243. }
  244. }
  245. .title-text {
  246. position: absolute;
  247. top: -14px;
  248. left: 0;
  249. width: 100%;
  250. text-align: center;
  251. color: #fff;
  252. }
  253. .table-box {
  254. height: 650px;
  255. padding: 20px 10px;
  256. margin-bottom: 15px;
  257. }
  258. .box-bg {
  259. border: 1px solid #4d7ad855;
  260. border-radius: 2px;
  261. // background-color: #001d3055;
  262. // -webkit-backdrop-filter: blur(8px);
  263. // backdrop-filter: blur(8px);
  264. box-shadow: 0 0 10px #5984e055 inset;
  265. // background-color: #00b3ff12;
  266. }
  267. .charts-box {
  268. height: calc(40vh - 80px);
  269. padding: 5px 10px;
  270. margin-top: 10px;
  271. }
  272. }
  273. :deep(.@{ventSpace}-tabs-tabpane-active) {
  274. height: 100%;
  275. }
  276. :deep(.@{ventSpace}-tabs-card) {
  277. .@{ventSpace}-tabs-tab {
  278. background: linear-gradient(#2cd1ff55, #1eb0ff55);
  279. border-color: #74e9fe;
  280. border-radius: 0%;
  281. &:hover {
  282. color: #64d5ff;
  283. }
  284. }
  285. .@{ventSpace}-tabs-tab.@{ventSpace}-tabs-tab-active .@{ventSpace}-tabs-tab-btn {
  286. color: aqua;
  287. }
  288. .@{ventSpace}-tabs-nav {
  289. // padding-bottom: 120px;
  290. }
  291. .@{ventSpace}-tabs-nav::before {
  292. border-color: #74e9fe;
  293. }
  294. .@{ventSpace}-picker,
  295. .@{ventSpace}-select-selector {
  296. width: 100% !important;
  297. background: #00000017 !important;
  298. border: 1px solid @vent-form-item-boder !important;
  299. input,
  300. .@{ventSpace}-select-selection-item,
  301. .@{ventSpace}-picker-suffix {
  302. color: #fff !important;
  303. }
  304. .@{ventSpace}-select-selection-placeholder {
  305. color: #b7b7b7 !important;
  306. }
  307. }
  308. .@{ventSpace}-pagination-next,
  309. .action,
  310. .@{ventSpace}-select-arrow,
  311. .@{ventSpace}-picker-separator {
  312. color: #fff !important;
  313. }
  314. .@{ventSpace}-table-cell-row-hover {
  315. background: #264d8833 !important;
  316. }
  317. .@{ventSpace}-table-row-selected {
  318. background: #00c0a311 !important;
  319. td {
  320. background-color: #00000000 !important;
  321. }
  322. }
  323. .@{ventSpace}-table-thead {
  324. // background: linear-gradient(#004a8655 0%, #004a86aa 10%) !important;
  325. background: #3d9dd45d !important;
  326. & > tr > th,
  327. .@{ventSpace}-table-column-title {
  328. // color: #70f9fc !important;
  329. border-color: #84f2ff !important;
  330. border-left: none !important;
  331. border-right: none !important;
  332. padding: 7px;
  333. }
  334. }
  335. .@{ventSpace}-table-tbody {
  336. tr > td {
  337. padding: 12px;
  338. }
  339. }
  340. .@{ventSpace}-table-tbody > tr:hover.@{ventSpace}-table-row > td {
  341. background-color: #26648855 !important;
  342. }
  343. .jeecg-basic-table-row__striped {
  344. // background: #97efff11 !important;
  345. td {
  346. background-color: #97efff11 !important;
  347. }
  348. }
  349. }
  350. </style>