index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. <template>
  2. <div class="bg" style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; overflow: hidden">
  3. <a-spin :spinning="loading" />
  4. <div id="damper3D" style="width: 100%; height: 100%; position: absolute; overflow: hidden"></div>
  5. </div>
  6. <div class="scene-box">
  7. <div class="top-box">
  8. <div class="top-center row">
  9. <div v-if="hasPermission('btn:control')" class="button-box" @click="playAnimation(1)">打开防火门</div>
  10. <div v-if="hasPermission('btn:control')" class="button-box" @click="playAnimation(2)">关闭防火门</div>
  11. </div>
  12. <!-- 控制模式 -->
  13. <div class="top-right row">
  14. <div class="vent-flex-m row" v-if="selectData.contrlMod == 'loopCtrl'">
  15. <div class="control-title">控制模式:</div>
  16. <a-radio-group v-model:value="selectData.autoRoManual">
  17. <template v-for="(item, index) in modelList" :key="index">
  18. <a-radio :value="item.value" :disabled="true">{{ item.text }}</a-radio>
  19. </template>
  20. </a-radio-group>
  21. <div class="button-box" @click="playAnimation(7)">切换模式</div>
  22. </div>
  23. <div class="vent-flex-m row" v-else>
  24. <div class="control-title">控制模式:</div>
  25. <a-radio-group v-model:value="selectData.autoRoManual">
  26. <template v-for="(item, index) in modelList" :key="index">
  27. <a-radio :value="item.value" :disabled="true">{{ item.text }}</a-radio>
  28. </template>
  29. </a-radio-group>
  30. <div class="button-box" v-for="(item, index) in modelList" @click="playAnimation(7, item.value)" :key="index">{{ item.text }}</div>
  31. </div>
  32. <!-- <div class="run-type row">
  33. <div class="control-title">运行状态:</div>
  34. <a-radio-group v-model:value="selectData.runRoRecondition">
  35. <a-radio :value="`0`">检修</a-radio>
  36. <a-radio :value="`1`">运行</a-radio>
  37. </a-radio-group>
  38. </div> -->
  39. </div>
  40. </div>
  41. <div class="title-text">
  42. {{ selectData.supplyAirAddr || selectData.strinstallpos || selectData.strname }}
  43. </div>
  44. <div class="bottom-tabs-box" @mousedown="setDivHeight($event, 300, scroll)">
  45. <dv-border-box8 :dur="5" :style="`padding: 5px; height: ${scroll.y + 120}px`">
  46. <a-tabs class="tabs-box" v-model:activeKey="activeKey" @change="tabChange">
  47. <a-tab-pane key="1" tab="实时监测">
  48. <MonitorTable
  49. v-if="activeKey === '1'"
  50. ref="MonitorDataTable"
  51. class="monitor-table"
  52. :columnsType="deviceType"
  53. :isShowActionColumn="true"
  54. :dataSource="dataSource"
  55. design-scope="gate-monitor"
  56. @selectRow="getSelectRow"
  57. :scroll="{ y: scroll.y - 40 }"
  58. title="风门监测"
  59. :isShowPagination="true"
  60. >
  61. <template #filterCell="{ column, record }">
  62. <a-tag v-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '0' && record.frontGateClose == '0'" color="red"
  63. >正在运行</a-tag
  64. >
  65. <a-tag v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '0' && record.frontGateClose == 1" color="default"
  66. >关闭</a-tag
  67. >
  68. <a-tag v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '1' && record.frontGateClose == '0'" color="#46C66F"
  69. >打开</a-tag
  70. >
  71. <a-tag v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '1' && record.frontGateClose == '1'" color="#FF0000"
  72. >点位异常</a-tag
  73. >
  74. <template v-else-if="column.dataIndex === 'warnLevel'">
  75. <a-tag v-if="record.warnLevel == '101'" color="green">低风险</a-tag>
  76. <a-tag v-else-if="record.warnLevel == '102'" color="#FF5812">一般风险</a-tag>
  77. <a-tag v-else-if="record.warnLevel == '103'" color="#FF5812">较大风险</a-tag>
  78. <a-tag v-else-if="record.warnLevel == '104'" color="#FF5812">重大风险</a-tag>
  79. <a-tag v-else-if="record.warnLevel == '201'" color="#FF0000">报警</a-tag>
  80. <a-tag v-else-if="record.warnLevel == '10000'" color="#FF5812">数据超限</a-tag>
  81. <a-tag v-else-if="record.warnLevel == '1001'" color="default">网络中断</a-tag>
  82. <a-tag v-else color="green">正常</a-tag>
  83. </template>
  84. <a-tag v-else-if="column.dataIndex === 'warnFlag'" :color="record.warnFlag == '0' ? 'green' : 'red'">{{
  85. record.warnFlag == '0' ? '正常' : '报警'
  86. }}</a-tag>
  87. <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == '0' ? '#f00' : 'green'">{{
  88. record.netStatus == '0' ? '断开' : '连接'
  89. }}</a-tag>
  90. </template>
  91. <template #action="{ record }">
  92. <a v-if="globalConfig?.showReport" class="table-action-link" @click="deviceEdit($event, 'reportInfo', record)">报表录入</a>
  93. <a class="table-action-link" @click="deviceEdit($event, 'deviceInfo', record)">设备编辑</a>
  94. </template>
  95. </MonitorTable>
  96. </a-tab-pane>
  97. <a-tab-pane key="3" tab="历史数据">
  98. <div class="tab-item" v-if="activeKey === '3'">
  99. <HistoryTable :columnsType="deviceType" :device-type="deviceType" designScope="gate-history" :scroll="scroll">
  100. <template #filterCell="{ column, record }">
  101. <a-tag v-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '0' && record.frontGateClose == '0'" color="red"
  102. >正在运行</a-tag
  103. >
  104. <a-tag v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '0' && record.frontGateClose == 1" color="default"
  105. >关闭</a-tag
  106. >
  107. <a-tag
  108. v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '1' && record.frontGateClose == '0'"
  109. color="#46C66F"
  110. >打开</a-tag
  111. >
  112. <a-tag
  113. v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '1' && record.frontGateClose == '1'"
  114. color="#FF0000"
  115. >点位异常</a-tag
  116. >
  117. <template v-else-if="column.dataIndex === 'warnLevel'">
  118. <a-tag v-if="record.warnLevel == '101'" color="green">低风险</a-tag>
  119. <a-tag v-else-if="record.warnLevel == '102'" color="#FF5812">一般风险</a-tag>
  120. <a-tag v-else-if="record.warnLevel == '103'" color="#FF5812">较大风险</a-tag>
  121. <a-tag v-else-if="record.warnLevel == '104'" color="#FF5812">重大风险</a-tag>
  122. <a-tag v-else-if="record.warnLevel == '201'" color="#FF0000">报警</a-tag>
  123. <a-tag v-else-if="record.warnLevel == '10000'" color="#FF5812">数据超限</a-tag>
  124. <a-tag v-else-if="record.warnLevel == '1001'" color="default">网络中断</a-tag>
  125. <a-tag v-else color="green">正常</a-tag>
  126. </template>
  127. </template>
  128. </HistoryTable>
  129. </div>
  130. </a-tab-pane>
  131. <a-tab-pane key="4" tab="报警历史">
  132. <div class="tab-item" v-if="activeKey === '4'">
  133. <AlarmHistoryTable
  134. columns-type="alarm"
  135. :device-type="deviceType"
  136. :device-list-api="getTableList"
  137. designScope="alarm-history"
  138. :scroll="scroll"
  139. >
  140. <template #filterCell="{ column, record }">
  141. <a-tag v-if="column.dataIndex === 'warnFlag'" :color="record.warnFlag == '0' ? 'green' : record.warnFlag == 1 ? '#FF5812' : 'gray'">
  142. {{ record.warnFlag == '0' ? '正常' : record.warnFlag == 1 ? '报警' : record.warnFlag == 2 ? '断开' : '未监测' }}</a-tag
  143. >
  144. <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == '0' ? '#f00' : 'green'">{{
  145. record.netStatus == '0' ? '断开' : '连接'
  146. }}</a-tag>
  147. </template>
  148. </AlarmHistoryTable>
  149. </div>
  150. </a-tab-pane>
  151. <a-tab-pane key="5" tab="操作历史">
  152. <div class="tab-item" v-if="activeKey === '5'">
  153. <HandlerHistoryTable
  154. columns-type="operator_history"
  155. :device-type="deviceType"
  156. :device-list-api="getTableList"
  157. designScope="operator_history"
  158. :scroll="scroll"
  159. />
  160. </div>
  161. </a-tab-pane>
  162. </a-tabs>
  163. </dv-border-box8>
  164. </div>
  165. </div>
  166. <div ref="playerRef" style="z-index: 999; position: absolute; top: 100px; right: 15px; width: 300px; height: 280px; margin: auto"> </div>
  167. <HandleModal
  168. v-if="!globalConfig?.simulatedPassword"
  169. :modal-is-show="modalIsShow"
  170. :modal-title="modalTitle"
  171. :modal-type="modalType"
  172. @handle-ok="handleOK"
  173. @handle-cancel="handleCancel"
  174. />
  175. <DeviceBaseInfo @register="registerModal" :device-type="selectData['deviceType']" />
  176. </template>
  177. <script setup lang="ts">
  178. import { onBeforeUnmount, onUnmounted, onMounted, ref, reactive, nextTick, inject, unref } from 'vue';
  179. import MonitorTable from '../comment/MonitorTable.vue';
  180. import HistoryTable from '../comment/HistoryTable.vue';
  181. import AlarmHistoryTable from '../comment/AlarmHistoryTable.vue';
  182. import HandlerHistoryTable from '../comment/HandlerHistoryTable.vue';
  183. import HandleModal from './modal.vue';
  184. import DeviceBaseInfo from '../comment/components/DeviceBaseInfo.vue';
  185. import { mountedThree, play, destroy, setModelType } from './fireDoor.threejs';
  186. import { deviceControlApi } from '/@/api/vent/index';
  187. import { message } from 'ant-design-vue';
  188. import { list, getTableList } from './fireDoor.api';
  189. import lodash from 'lodash';
  190. import { setDivHeight } from '/@/utils/event';
  191. import { BorderBox8 as DvBorderBox8 } from '@kjgl77/datav-vue3';
  192. import { useRouter } from 'vue-router';
  193. import { useModal } from '/@/components/Modal';
  194. import { useCamera } from '/@/hooks/system/useCamera';
  195. import { usePermission } from '/@/hooks/web/usePermission';
  196. import { getDictItems } from '/@/api/common/api';
  197. const { hasPermission } = usePermission();
  198. const globalConfig = inject('globalConfig');
  199. const { currentRoute } = useRouter();
  200. const MonitorDataTable = ref();
  201. let contrlValue = '';
  202. const playerRef = ref();
  203. // const deviceType = ref('door');
  204. const deviceType = ref('firedoor');
  205. const activeKey = ref('1'); // tab
  206. const loading = ref(false);
  207. const scroll = reactive({
  208. y: 230,
  209. });
  210. const modelList = ref<{ text: string; value: string }[]>([]);
  211. const doorIsOpen = ref(false); //前门是否开启
  212. const modalIsShow = ref<boolean>(false); // 是否显示模态框
  213. const modalTitle = ref(''); // 模态框标题显示内容,根据设备操作类型决定
  214. const modalType = ref(''); // 模态框内容显示类型,设备操作类型
  215. const selectRowIndex = ref(-1); // 选中行
  216. const dataSource = ref([]);
  217. const deviceBaseList = ref([]); // 设备基本信息
  218. const [registerModal, { openModal, closeModal }] = useModal();
  219. const { getCamera, removeCamera } = useCamera();
  220. const tabChange = (activeKeyVal) => {
  221. activeKey.value = activeKeyVal;
  222. if (activeKeyVal == 1) {
  223. nextTick(() => {
  224. if (MonitorDataTable.value) MonitorDataTable.value.setSelectedRowKeys([selectData.deviceID]);
  225. });
  226. }
  227. };
  228. const initData = {
  229. deviceID: '',
  230. deviceType: '',
  231. strname: '',
  232. frontRearDP: '-', //压差
  233. // sourcePressure: '-', //气源压力
  234. runRoRecondition: null,
  235. autoRoManual: null,
  236. netStatus: '0', //通信状态
  237. frontGateOpen: '0',
  238. frontGateClose: '1',
  239. rearGateOpen: '0',
  240. rearGateClose: '1',
  241. midGateOpen: '0',
  242. midGateClose: '1',
  243. fault: '气源压力超限',
  244. masterComputer: 0,
  245. frontGateOpenCtrl: false,
  246. rearGateOpenCtrl: false,
  247. cameras: [],
  248. };
  249. // 监测数据
  250. const selectData = reactive(lodash.cloneDeep(initData));
  251. function deviceEdit(e: Event, type: string, record) {
  252. e.stopPropagation();
  253. openModal(true, {
  254. type,
  255. deviceId: record['deviceID'],
  256. });
  257. }
  258. // 获取设备基本信息列表
  259. function getDeviceBaseList() {
  260. getTableList({ pageSize: 1000 }).then((res) => {
  261. deviceBaseList.value = res.records;
  262. });
  263. }
  264. // https获取监测数据
  265. let timer: null | NodeJS.Timeout = null;
  266. async function getMonitor(flag?) {
  267. if (Object.prototype.toString.call(timer) === '[object Null]') {
  268. timer = await setTimeout(
  269. async () => {
  270. const res = await list({ devicetype: deviceType.value, pagetype: 'normal' });
  271. if (res.msgTxt && res.msgTxt[0]) {
  272. dataSource.value = res.msgTxt[0].datalist || [];
  273. dataSource.value.forEach((data: any) => {
  274. const readData = data.readData;
  275. data = Object.assign(data, readData);
  276. });
  277. if (dataSource.value.length > 0 && selectRowIndex.value == -1 && MonitorDataTable.value) {
  278. // 初始打开页面
  279. if (currentRoute.value && currentRoute.value['query'] && currentRoute.value['query']['id']) {
  280. MonitorDataTable.value.setSelectedRowKeys([currentRoute.value['query']['id']]);
  281. } else {
  282. MonitorDataTable.value.setSelectedRowKeys([dataSource.value[0]['deviceID']]);
  283. }
  284. }
  285. Object.assign(selectData, dataSource.value[selectRowIndex.value]);
  286. monitorAnimation(selectData);
  287. if (timer) {
  288. timer = null;
  289. }
  290. getMonitor();
  291. }
  292. },
  293. flag ? 0 : 1000
  294. );
  295. }
  296. }
  297. // 切换检测数据
  298. async function getSelectRow(selectRow, index) {
  299. if (!selectRow) return;
  300. loading.value = true;
  301. selectRowIndex.value = index;
  302. const baseData: any = deviceBaseList.value.find((baseData: any) => baseData.id === selectRow.deviceID);
  303. Object.assign(selectData, initData, selectRow, baseData);
  304. doorDeviceState = 1; //记录设备状态,为了与下一次监测数据做比较
  305. let type = 'fireDoor';
  306. if (selectData.deviceType == 'door_fire') {
  307. type = 'fireDoor';
  308. } else if (selectData.deviceType == 'door_fire_h') {
  309. type = 'fireDoorF';
  310. }
  311. await setModelType(type);
  312. loading.value = false;
  313. isdoorOpenRunning = true; //开关门动作是否在进行
  314. await getCamera(selectRow.deviceID, playerRef.value);
  315. }
  316. function playAnimation(handlerState, data: any = null) {
  317. const value = data;
  318. switch (handlerState) {
  319. case 1: // 打开前门
  320. modalTitle.value = '打开';
  321. modalType.value = '1';
  322. modalIsShow.value = true;
  323. break;
  324. case 2: // 关闭前门
  325. modalTitle.value = '关闭';
  326. modalType.value = '2';
  327. modalIsShow.value = true;
  328. break;
  329. case 7: // 控制模式切换
  330. modalTitle.value = '控制模式切换';
  331. modalType.value = '7';
  332. modalIsShow.value = true;
  333. break;
  334. }
  335. if (globalConfig?.simulatedPassword) {
  336. handleOK('', handlerState + '');
  337. }
  338. contrlValue = value;
  339. }
  340. function handleOK(passWord, handlerState) {
  341. if (!passWord && !globalConfig?.simulatedPassword) {
  342. message.warning('请输入密码');
  343. return;
  344. }
  345. if (isOpenRunning) {
  346. return;
  347. }
  348. const data = {
  349. deviceid: selectData.deviceID,
  350. devicetype: selectData.deviceType,
  351. paramcode: '',
  352. value: contrlValue,
  353. password: passWord || globalConfig?.simulatedPassword,
  354. masterComputer: selectData.masterComputer,
  355. };
  356. switch (handlerState) {
  357. case '1': // 打开前门
  358. if (selectData.doorOpen == '0' && selectData.doorClose == '1') {
  359. data.paramcode = 'frontGateOpen_S';
  360. }
  361. break;
  362. case '2': // 关闭前门
  363. if (selectData.doorOpen == '1' && selectData.doorClose == '0') {
  364. data.paramcode = 'frontGateClose_S';
  365. }
  366. break;
  367. case '7': // 远程与就地
  368. data.paramcode = 'autoRoManualControl';
  369. data.value = selectData.contrlMod != 'loopCtrl' ? contrlValue : '';
  370. selectData.autoRoManual = null;
  371. }
  372. if (data.paramcode) {
  373. deviceControlApi(data).then((res) => {
  374. // 模拟时开启
  375. if (res.success) {
  376. modalIsShow.value = false;
  377. if (globalConfig.History_Type == 'remote') {
  378. message.success('指令已下发至生产管控平台成功!');
  379. } else {
  380. message.success('指令已下发成功!');
  381. }
  382. } else {
  383. message.error(res.message);
  384. }
  385. });
  386. }
  387. }
  388. let isOpenRunning = false; //开关门动作是否在进行
  389. /** 开关门动画调用 */
  390. let isdoorOpenRunning = false; //开关门动作是否在进行
  391. // let isMidCloseRunning = false; //中间门动作是否在进行
  392. // 0 关闭 1 正在打开 2 打开 3正在关闭
  393. let doorDeviceState = 1; //记录设备状态,为了与下一次监测数据做比较
  394. function monitorAnimation(selectData) {
  395. const timeScale = 0.005;
  396. debugger;
  397. // 打开
  398. if (selectData.frontGateOpen == '1' && !isdoorOpenRunning) {
  399. isdoorOpenRunning = true;
  400. if (doorDeviceState != 1) {
  401. // import.meta.env.VITE_GLOB_IS_SIMULATE ? play(1, timeScale) : play(1);
  402. play(1, timeScale);
  403. doorDeviceState = 1;
  404. doorIsOpen.value = true;
  405. }
  406. }
  407. // 关闭
  408. if (selectData.frontGateOpen == '0' && isdoorOpenRunning) {
  409. isdoorOpenRunning = false;
  410. if (doorDeviceState != 0) {
  411. // import.meta.env.VITE_GLOB_IS_SIMULATE ? play(1, timeScale) : play(1);
  412. play(2, timeScale);
  413. doorDeviceState = 0;
  414. doorIsOpen.value = false;
  415. }
  416. }
  417. // if (selectData.frontGateClose == '1' && selectData.frontGateOpen == '0' && isFrontOpenRunning) {
  418. // isFrontOpenRunning = false;
  419. // if (frontDeviceState != 0) {
  420. // // import.meta.env.VITE_GLOB_IS_SIMULATE ? play(2, timeScale) : play(2);
  421. // play(2, timeScale);
  422. // frontDeviceState = 0;
  423. // frontDoorIsOpen.value = false;
  424. // // backDoorIsOpen.value = false
  425. // }
  426. // }
  427. }
  428. function handleCancel() {
  429. modalIsShow.value = false;
  430. modalTitle.value = '';
  431. modalType.value = '';
  432. selectData.autoRoManual = null;
  433. }
  434. onMounted(async () => {
  435. const { query } = unref(currentRoute);
  436. if (query['deviceType']) deviceType.value = query['deviceType'] as string;
  437. modelList.value = await getDictItems('fireDoorModel');
  438. loading.value = true;
  439. mountedThree().then(async () => {
  440. await getMonitor(true);
  441. loading.value = false;
  442. });
  443. });
  444. onBeforeUnmount(() => {
  445. getDeviceBaseList();
  446. });
  447. onUnmounted(() => {
  448. removeCamera();
  449. if (timer) {
  450. clearTimeout(timer);
  451. timer = undefined;
  452. }
  453. destroy();
  454. });
  455. </script>
  456. ,
  457. <style lang="less" scoped>
  458. @import '/@/design/vent/modal.less';
  459. .scene-box {
  460. .bottom-tabs-box {
  461. height: 300px;
  462. }
  463. }
  464. .button-box {
  465. border: none !important;
  466. height: 34px !important;
  467. &:hover {
  468. background: linear-gradient(#2cd1ff55, #1eb0ff55) !important;
  469. }
  470. &::before {
  471. height: 27px !important;
  472. background: linear-gradient(#1fa6cb, #127cb5) !important;
  473. }
  474. &::after {
  475. top: 35px !important;
  476. }
  477. }
  478. :deep(.@{ventSpace}-tabs-tabpane-active) {
  479. height: 100%;
  480. }
  481. ::-webkit-scrollbar-thumb {
  482. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  483. background: #4288a444;
  484. }
  485. :deep(.zxm-radio-disabled + span) {
  486. color: #fff !important;
  487. }
  488. :deep(.zxm-radio-disabled .zxm-radio-inner::after) {
  489. background-color: #127cb5 !important;
  490. }
  491. </style>