index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  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="deviceDetail" class="device-detail">
  5. <div id="deviceCard" class="device-card" style="z-index: -1; position: absolute">
  6. <div class="title">KJ-980-F矿用本安型监控分站</div>
  7. <div class="detail-box">
  8. <div class="left-box"></div>
  9. <div class="right-box">
  10. <div><span class="detail-title">规格型号:</span> <span>KJ-980-F</span></div>
  11. <div
  12. ><span class="detail-title">技术参数:</span>
  13. <span
  14. >380V,电机功率22kW,50Hz,B级绝缘,额定电流42.2A,效率90.5%,能效等级3,接法角型,2940r/min,轴承6311/CM 6211/CM,功率因数0.89</span
  15. ></div
  16. >
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. <div id="damper3D" style="width: 100%; height: 100%; position: absolute; overflow: hidden"></div>
  22. </div>
  23. <div class="scene-box">
  24. <div class="top-box">
  25. <div class="top-center row">
  26. <div class="button-box" :class="{ 'button-disable': backDoorIsOpen }" @click="playAnimation(1)">打开前门</div>
  27. <div class="button-box" :class="{ 'button-disable': backDoorIsOpen }" @click="playAnimation(2)">关闭前门</div>
  28. <div class="button-box" :class="{ 'button-disable': frontDoorIsOpen }" @click="playAnimation(3)">打开后门</div>
  29. <div class="button-box" :class="{ 'button-disable': frontDoorIsOpen }" @click="playAnimation(4)">关闭后门</div>
  30. <div class="button-box" :class="{ 'button-disable': frontDoorIsOpen || backDoorIsOpen }" @click="playAnimation(5)">打开前后门</div>
  31. <div
  32. class="button-box"
  33. :class="{ 'button-disable': (frontDoorIsOpen && !backDoorIsOpen) || (backDoorIsOpen && !frontDoorIsOpen) }"
  34. @click="playAnimation(6)"
  35. >关闭前后门</div
  36. >
  37. <!-- <div class="button-box" @click="enterMY">漫游</div> -->
  38. </div>
  39. <div class="top-right row">
  40. <div class="control-type row">
  41. <div class="control-title">控制模式:</div>
  42. <a-radio-group v-model:value="selectData.autoRoManual" @change="changeType">
  43. <a-radio :value="`0`">就地</a-radio>
  44. <a-radio :value="`1`">远程</a-radio>
  45. </a-radio-group>
  46. </div>
  47. <div class="run-type row">
  48. <div class="control-title">运行状态:</div>
  49. <a-radio-group v-model:value="controlType">
  50. <a-radio :value="`1`">检修</a-radio>
  51. </a-radio-group>
  52. </div>
  53. <div class="run-state row">
  54. <div class="control-title">网络状态:</div>
  55. <a-radio-group v-model:value="selectData.netStatus">
  56. <a-radio :value="`1`">运行</a-radio>
  57. </a-radio-group>
  58. </div>
  59. </div>
  60. </div>
  61. <div class="title-text">
  62. {{ selectData.stationname }}
  63. </div>
  64. <div class="bottom-tabs-box">
  65. <a-tabs class="tabs-box" v-model:activeKey="activeKey" @change="tabChange">
  66. <a-tab-pane key="1" tab="实时监测">
  67. <MonitorTable
  68. class="monitor-table"
  69. columnsType="gate_monitor"
  70. :dataSource="dataSource"
  71. design-scope="gate-monitor"
  72. @selectRow="getSelectRow"
  73. title="风门监测"
  74. >
  75. <template #filterCell="{ column, record }">
  76. <a-tag v-if="column.dataIndex === 'frontGateOpen'" :color="record.frontGateOpen == 0 ? 'default' : 'processing'">{{
  77. record.frontGateOpen == 0 ? '关闭' : '打开'
  78. }}</a-tag>
  79. <a-tag v-if="column.dataIndex === 'rearGateOpen'" :color="record.rearGateOpen == 0 ? 'default' : 'processing'">{{
  80. record.rearGateOpen == 0 ? '关闭' : '打开'
  81. }}</a-tag>
  82. <a-tag v-if="column.dataIndex === 'warnFlag'" :color="record.warnFlag == 0 ? 'green' : 'red'">{{
  83. record.warnFlag == 0 ? '正常' : '报警'
  84. }}</a-tag>
  85. <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == 0 ? 'default' : 'green'">{{
  86. record.netStatus == 0 ? '断开' : '连接'
  87. }}</a-tag>
  88. </template>
  89. </MonitorTable>
  90. </a-tab-pane>
  91. <a-tab-pane key="2" tab="实时曲线图" force-render>
  92. <div class="tab-item" v-if="activeKey === '2'">
  93. <DeviceEcharts
  94. chartsColumnsType="gate_chart"
  95. xAxisPropType="strname"
  96. :dataSource="dataSource"
  97. height="100%"
  98. :chartsColumns="chartsColumns"
  99. :device-list-api="list"
  100. device-type="gate"
  101. />
  102. </div>
  103. </a-tab-pane>
  104. <a-tab-pane key="3" tab="历史数据">
  105. <div class="tab-item">
  106. <HistoryTable columns-type="gate_history" device-type="gate" :device-list-api="baseList" designScope="gate-history" />
  107. </div>
  108. </a-tab-pane>
  109. <a-tab-pane key="4" tab="报警历史">
  110. <div class="tab-item">
  111. <AlarmHistoryTable columns-type="alarm_history" device-type="gate" :device-list-api="baseList" designScope="alarm-history" />
  112. </div>
  113. </a-tab-pane>
  114. <a-tab-pane key="5" tab="操作历史">
  115. <div class="tab-item">
  116. <HandlerHistoryTable columns-type="alarm_history" device-type="fanlocal" :device-list-api="baseList" designScope="alarm-history" />
  117. </div>
  118. </a-tab-pane>
  119. </a-tabs>
  120. </div>
  121. </div>
  122. <div style="z-index: -1; position: absolute; top: 50px; right: 10px; width: 300px; height: 280px; margin: auto" class="palyer1">
  123. <LivePlayer id="fm-player1" ref="player1" :videoUrl="flvURL1()" muted live loading controls />
  124. <LivePlayer id="fm-player2" ref="player2" :videoUrl="flvURL1()" muted live loading controls style="margin-top: 10px" />
  125. </div>
  126. <!-- <a-modal v-model:visible="modalIsShow" :title="modalTitle" @ok="handleOk">
  127. <div class="modal-container">
  128. <div class="vent-flex-row">
  129. <ExclamationCircleFilled style="color: #ffb700; font-size: 30px" />
  130. <div class="warning-text">您是否要进行{{ modalTitle }}操作?</div>
  131. </div>
  132. </div>
  133. </a-modal> -->
  134. <HandleModal :modal-is-show="modalIsShow" :modal-title="modalTitle" :modal-type="modalType" @handle-ok="handleOK" @handle-cancel="handleCancel" />
  135. </template>
  136. <script setup lang="ts">
  137. import LivePlayer from '@liveqing/liveplayer-v3';
  138. import { onBeforeMount, onBeforeUnmount, onUnmounted, onMounted, ref, reactive, toRaw, nextTick } from 'vue';
  139. import DeviceEcharts from '../comment/DeviceEcharts.vue';
  140. import MonitorTable from '../comment/MonitorTable.vue';
  141. import HistoryTable from '../comment/HistoryTable.vue';
  142. import AlarmHistoryTable from '../comment/AlarmHistoryTable.vue';
  143. import HandlerHistoryTable from '../comment/HandlerHistoryTable.vue';
  144. import HandleModal from './modal.vue';
  145. import { initWebSocket, getRecordList } from '/@/hooks/web/useVentWebSocket';
  146. import { mountedThree, addFmText, play, destroy, initOpenState, deviceDetailCard } from './gate.threejs';
  147. import { deviceControlApi } from '/@/api/vent/index';
  148. import { message } from 'ant-design-vue';
  149. import { list, getTableList } from './gate.api';
  150. import { chartsColumns } from './gate.data';
  151. import lodash from 'lodash';
  152. const player1 = ref(null);
  153. const player2 = ref(null);
  154. const activeKey = ref('1');
  155. const loading = ref(false);
  156. const frontDoorIsOpen = ref(false); //前门是否开启
  157. const backDoorIsOpen = ref(false); //后门是否开启
  158. const modalIsShow = ref<boolean>(false); // 是否显示模态框
  159. const modalTitle = ref(''); // 模态框标题显示内容,根据设备操作类型决定
  160. const modalType = ref(''); // 模态框内容显示类型,设备操作类型
  161. const selectRowIndex = ref(0);
  162. const dataSource = ref([]);
  163. const deviceBaseList = ref([]);
  164. // webSocket 请求 实时监测数据
  165. // const dataSource:any = computed(() => {
  166. // const data = [...getRecordList()] || []
  167. //
  168. // Object.assign(selectData, toRaw(data[selectRowIndex.value]))
  169. //
  170. // addFmText(selectData)
  171. //
  172. // return data;
  173. // });
  174. // 设备数据
  175. const controlType = ref(1);
  176. const tabChange = (activeKeyVal) => {
  177. activeKey.value = activeKeyVal;
  178. };
  179. const initData = {
  180. deviceID: '',
  181. deviceType: '',
  182. strname: '',
  183. frontRearDP: '-', //压差
  184. sourcePressure: '-', //气源压力
  185. netStatus: '0', //通信状态
  186. frontGateOpen: '0',
  187. rearGateOpen: '0',
  188. fault: '气源压力超限',
  189. autoRoManual: 0,
  190. };
  191. // 监测数据
  192. const selectData = reactive(lodash.cloneDeep(initData));
  193. // 获取设备基本信息列表
  194. const getDeviceBaseList = () => {
  195. getTableList({ pageSize: 1000 }).then((res) => {
  196. deviceBaseList.value = res.records;
  197. });
  198. };
  199. // https获取监测数据
  200. let timer: null | NodeJS.Timeout = null;
  201. const getMonitor = () => {
  202. if (Object.prototype.toString.call(timer) === '[object Null]') {
  203. timer = setTimeout(() => {
  204. list({ devicetype: 'gate', pagetype: 'normal' }).then((res) => {
  205. if (res.msgTxt && res.msgTxt[0]) {
  206. dataSource.value = res.msgTxt[0].datalist || [];
  207. dataSource.value.forEach((data: any) => {
  208. const readData = data.readData;
  209. data = Object.assign(data, readData);
  210. });
  211. if (dataSource.value.length > selectRowIndex.value) {
  212. const data: any = toRaw(dataSource.value[selectRowIndex.value]); //maxarea
  213. Object.assign(selectData, data);
  214. addFmText(selectData);
  215. if (timer) {
  216. timer = null;
  217. }
  218. getMonitor();
  219. }
  220. }
  221. });
  222. }, 1000);
  223. }
  224. };
  225. // 切换检测数据
  226. const getSelectRow = async (selectRow, index) => {
  227. if (!selectRow) return;
  228. loading.value = true;
  229. selectRowIndex.value = index;
  230. const baseData: any = deviceBaseList.value.find((baseData: any) => baseData.id === selectRow.deviceID);
  231. Object.assign(selectData, initData, selectRow, baseData);
  232. // selectData = selectRow;
  233. frontDoorIsOpen.value = selectData.frontGateOpen === '1';
  234. backDoorIsOpen.value = selectData.rearGateOpen === '1';
  235. initOpenState(selectData)?.then(() => {
  236. loading.value = false;
  237. });
  238. };
  239. // 播放动画
  240. const playAnimation = (handlerState) => {
  241. switch (handlerState) {
  242. case 1: // 打开前门
  243. if (!frontDoorIsOpen.value && !backDoorIsOpen.value) {
  244. modalTitle.value = '打开前门';
  245. modalType.value = '1';
  246. modalIsShow.value = true;
  247. }
  248. break;
  249. case 2: // 关闭前门
  250. if (frontDoorIsOpen.value && !backDoorIsOpen.value) {
  251. modalTitle.value = '关闭前门';
  252. modalType.value = '2';
  253. modalIsShow.value = true;
  254. }
  255. break;
  256. case 3: // 打开后门
  257. if (!backDoorIsOpen.value && !frontDoorIsOpen.value) {
  258. modalTitle.value = '打开后门';
  259. modalType.value = '3';
  260. modalIsShow.value = true;
  261. }
  262. break;
  263. case 4: // 关闭后门
  264. if (backDoorIsOpen.value && !frontDoorIsOpen.value) {
  265. modalTitle.value = '关闭后门';
  266. modalType.value = '4';
  267. modalIsShow.value = true;
  268. }
  269. break;
  270. case 5: // 打开前后门
  271. if (!frontDoorIsOpen.value && !backDoorIsOpen.value) {
  272. modalTitle.value = '打开前后门';
  273. modalType.value = '5';
  274. modalIsShow.value = true;
  275. }
  276. break;
  277. case 6: // 关闭前后门
  278. if (frontDoorIsOpen.value && backDoorIsOpen.value) {
  279. modalTitle.value = '关闭前后门';
  280. modalType.value = '6';
  281. modalIsShow.value = true;
  282. }
  283. break;
  284. }
  285. };
  286. const handleOK = (passWord, handlerState) => {
  287. if (passWord !== '123456') {
  288. message.warning('密码不正确,请重新输入');
  289. return;
  290. }
  291. const data = {
  292. deviceid: selectData.deviceID,
  293. devicetype: selectData.deviceType,
  294. paramcode: '',
  295. value: null,
  296. autoRoManual: selectData.autoRoManual,
  297. };
  298. let handler = () => {};
  299. switch (handlerState) {
  300. case '1': // 打开前门
  301. if (!frontDoorIsOpen.value && !backDoorIsOpen.value) {
  302. handler = () => {
  303. frontDoorIsOpen.value = true;
  304. };
  305. data.paramcode = 'frontGateOpen_S';
  306. }
  307. break;
  308. case '2': // 关闭前门
  309. if (frontDoorIsOpen.value && !backDoorIsOpen.value) {
  310. handler = () => {
  311. frontDoorIsOpen.value = false;
  312. };
  313. data.paramcode = 'frontGateClose_S';
  314. }
  315. break;
  316. case '3': // 打开后门
  317. if (!backDoorIsOpen.value && !frontDoorIsOpen.value) {
  318. handler = () => {
  319. backDoorIsOpen.value = true;
  320. };
  321. data.paramcode = 'rearGateOpen_S';
  322. }
  323. break;
  324. case '4': // 关闭后门
  325. if (backDoorIsOpen.value && !frontDoorIsOpen.value) {
  326. handler = () => {
  327. backDoorIsOpen.value = false;
  328. };
  329. data.paramcode = 'rearGateClose_S';
  330. }
  331. break;
  332. case '5': // 打开前后门
  333. if (!frontDoorIsOpen.value && !backDoorIsOpen.value) {
  334. handler = () => {
  335. frontDoorIsOpen.value = true;
  336. backDoorIsOpen.value = true;
  337. };
  338. data.paramcode = 'sameTimeOpen';
  339. }
  340. break;
  341. case '6': // 关闭前后门
  342. if (frontDoorIsOpen.value && backDoorIsOpen.value) {
  343. handler = () => {
  344. frontDoorIsOpen.value = false;
  345. backDoorIsOpen.value = false;
  346. };
  347. data.paramcode = 'sameTimeClose';
  348. }
  349. break;
  350. }
  351. if (data.paramcode) {
  352. deviceControlApi(data)
  353. .then((res) => {
  354. if (res.success) {
  355. }
  356. })
  357. .finally(() => {
  358. modalIsShow.value = false;
  359. modalTitle.value = '';
  360. modalType.value = '';
  361. handler();
  362. play(Number(handlerState));
  363. });
  364. }
  365. };
  366. const handleCancel = () => {
  367. modalIsShow.value = false;
  368. modalTitle.value = '';
  369. modalType.value = '';
  370. };
  371. // 远程、就地切换
  372. const changeType = () => {
  373. const data = {
  374. deviceid: selectData.deviceID,
  375. devicetype: selectData.deviceType,
  376. paramcode: 'autoRoManual',
  377. value: selectData.autoRoManual,
  378. };
  379. deviceControlApi(data).then(() => {
  380. message.success('状态切换成功!');
  381. });
  382. };
  383. const flvURL1 = () => {
  384. return `https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/flv/xgplayer-demo-360p.flv`;
  385. };
  386. const flvURL2 = () => {
  387. return `https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/flv/xgplayer-demo-360p.flv`;
  388. };
  389. // 视频播放
  390. const addPlayVideo = () => {
  391. if (player1.value && player2.value && player1.value?.play && player2.value?.play) {
  392. // player1.value.setMuted(false);
  393. // player2.value.setMuted(false);
  394. player1.value.play();
  395. player2.value.play();
  396. document.body.removeEventListener('mousedown', addPlayVideo);
  397. }
  398. };
  399. const handleOk = (e: MouseEvent) => {
  400. //
  401. };
  402. onBeforeMount(() => {
  403. const sendVal = JSON.stringify({ pagetype: 'normal', devicetype: 'gate', orgcode: '', ids: '', systemID: '' });
  404. initWebSocket(sendVal);
  405. });
  406. onMounted(() => {
  407. loading.value = true;
  408. mountedThree(player1.value, player2.value).then(() => {
  409. nextTick(() => {
  410. getMonitor();
  411. addFmText(selectData);
  412. deviceDetailCard();
  413. });
  414. loading.value = false;
  415. });
  416. document.body.addEventListener('mousedown', addPlayVideo, false);
  417. });
  418. onBeforeUnmount(() => {
  419. getDeviceBaseList();
  420. });
  421. onUnmounted(() => {
  422. if (timer) {
  423. clearTimeout(timer);
  424. timer = undefined;
  425. }
  426. destroy();
  427. });
  428. </script>
  429. <style lang="less" scoped>
  430. @import '/@/design/vent/modal.less';
  431. .button-box {
  432. border: none !important;
  433. height: 34px !important;
  434. &:hover {
  435. background: linear-gradient(#2cd1ff55, #1eb0ff55) !important;
  436. }
  437. &::before {
  438. height: 27px !important;
  439. background: linear-gradient(#1fa6cb, #127cb5) !important;
  440. }
  441. &::after {
  442. top: 35px !important;
  443. }
  444. }
  445. :deep(.ant-tabs-tabpane-active) {
  446. overflow: auto;
  447. }
  448. </style>