index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  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="window3D" v-show="!loading" style="width: 100%; height: 100%; position: absolute; overflow: hidden"> </div>
  5. <!-- <div id="damper3DCSS" v-show="!loading" style="width: 100%; height: 100%; top:0; left: 0; position: absolute; overflow: hidden;">
  6. <div>
  7. <div ref="elementContent" class="elementContent">
  8. <p><span class="data-title">压力(Pa):</span>{{selectData.frontRearDP}}</p>
  9. <p><span class="data-title">动力源压力(MPa):</span>{{selectData.sourcePressure}}</p>
  10. <p><span class="data-title">故障诊断:</span>
  11. <i
  12. :class="{'state-icon': true, 'open': selectData.messageBoxStatus, 'close': !selectData.messageBoxStatus}"
  13. ></i>{{selectData.fault}}</p>
  14. </div>
  15. </div>
  16. </div> -->
  17. </div>
  18. <div class="scene-box">
  19. <div class="top-box">
  20. <div class="top-center">
  21. <!-- <div class="input-box">
  22. <span class="input-title">风窗面积:</span>
  23. <a-input-number size="small" placeholder="0" :min="0" :max="90" :step="1" v-model:value="windowAngle" />
  24. </div> -->
  25. <div v-if="selectData.nwindownum == 2" class="row">
  26. <div class="button-box" @click="setArea(1)">设定前窗面积</div>
  27. <div class="button-box" @click="setArea(2)">设定后窗面积</div>
  28. </div>
  29. <div v-if="selectData.nwindownum == 1" class="row">
  30. <div class="button-box" @click="setArea(1)">设定风窗面积</div>
  31. </div>
  32. </div>
  33. <div class="top-right row">
  34. <div class="control-type row">
  35. <div class="control-title">控制模式:</div>
  36. <a-radio-group v-model:value="controlType">
  37. <a-radio :value="1">就地</a-radio>
  38. <a-radio :value="2">远程</a-radio>
  39. </a-radio-group>
  40. </div>
  41. <div class="run-type row">
  42. <div class="control-title">运行状态:</div>
  43. <a-radio-group v-model:value="controlType">
  44. <a-radio :value="1">检修</a-radio>
  45. </a-radio-group>
  46. </div>
  47. <div class="run-state 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>
  54. </div>
  55. <div class="title-text">
  56. {{ selectData.strname }}
  57. </div>
  58. <div class="bottom-tabs-box">
  59. <a-tabs class="tabs-box" v-model:activeKey="activeKey" @change="tabChange">
  60. <a-tab-pane key="1" tab="实时监测">
  61. <MonitorTable
  62. columnsType="window_monitor"
  63. :dataSource="dataSource"
  64. @selectRow="getSelectRow"
  65. design-scope="window-monitor"
  66. title="风窗监测"
  67. >
  68. <template #filterCell="{ column, record }">
  69. <a-tag v-if="column.dataIndex === 'warnFlag'" :color="record.warnFlag == 0 ? 'green' : 'red'">{{
  70. record.warnFlag == 0 ? '正常' : '报警'
  71. }}</a-tag>
  72. <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == 0 ? 'default' : 'green'">{{
  73. record.netStatus == 0 ? '断开' : '连接'
  74. }}</a-tag>
  75. <div v-if="record.nwindownum == 1 && column.dataIndex === 'rearArea'">/</div>
  76. </template>
  77. </MonitorTable>
  78. </a-tab-pane>
  79. <a-tab-pane key="2" tab="实时曲线图" force-render>
  80. <div class="tab-item" v-if="activeKey === '2'">
  81. <DeviceEcharts
  82. chartsColumnsType="window_chart"
  83. xAxisPropType="strname"
  84. :dataSource="dataSource"
  85. height="100%"
  86. :chartsColumns="chartsColumns"
  87. :device-list-api="baseList"
  88. device-type="window"
  89. />
  90. </div>
  91. </a-tab-pane>
  92. <a-tab-pane key="3" tab="历史数据">
  93. <div class="tab-item">
  94. <HistoryTable columns-type="window_history" device-type="window" :device-list-api="baseList" designScope="window-history" />
  95. </div>
  96. </a-tab-pane>
  97. <a-tab-pane key="4" tab="报警历史">
  98. <div class="tab-item">
  99. <AlarmHistoryTable columns-type="alarm_history" device-type="window" :device-list-api="baseList" designScope="alarm-history" />
  100. </div>
  101. </a-tab-pane>
  102. <a-tab-pane key="5" tab="操作历史">
  103. <div class="tab-item">
  104. <HandlerHistoryTable columns-type="operatorhistory" device-type="fanlocal" :device-list-api="baseList" designScope="alarm-history" />
  105. </div>
  106. </a-tab-pane>
  107. </a-tabs>
  108. </div>
  109. </div>
  110. <div style="z-index: -1; position: absolute; top: 50px; right: 10px; width: 300px; height: 280px; margin: auto" class="palyer1">
  111. <LivePlayer id="fc-player1" ref="player1" :videoUrl="flvURL1()" muted live loading controls />
  112. <LivePlayer id="fc-player2" ref="player2" :videoUrl="flvURL1()" muted live loading controls style="margin-top: 10px" />
  113. </div>
  114. <HandleModal :modal-is-show="modalIsShow" :modal-title="modalTitle" :modal-type="modalType" @handle-ok="handleOK" @handle-cancel="handleCancel" />
  115. </template>
  116. <script setup lang="ts">
  117. import { message } from 'ant-design-vue';
  118. import DeviceEcharts from '../comment/DeviceEcharts.vue';
  119. import { onBeforeMount, ref, onMounted, onUnmounted, reactive, toRaw } from 'vue';
  120. import MonitorTable from '../comment/MonitorTable.vue';
  121. import HistoryTable from '../comment/HistoryTable.vue';
  122. import AlarmHistoryTable from '../comment/AlarmHistoryTable.vue';
  123. import HandlerHistoryTable from '../comment/HandlerHistoryTable.vue';
  124. import HandleModal from './modal.vue';
  125. import { initWebSocket, getRecordList } from '/@/hooks/web/useVentWebSocket';
  126. import { mountedThree, destroy, addFmText, play, setModelType } from './window.threejs';
  127. import { list, getTableList } from './window.api';
  128. import { list as baseList } from '../../deviceManager/windWindowTabel/ventanalyWindow.api';
  129. import { chartsColumns } from './window.data';
  130. import { deviceControlApi } from '/@/api/vent/index';
  131. import lodash from 'lodash';
  132. import LivePlayer from '@liveqing/liveplayer-v3';
  133. const player1 = ref(null);
  134. const player2 = ref(null);
  135. const modalIsShow = ref<boolean>(false); // 是否显示模态框
  136. const modalTitle = ref(''); // 模态框标题显示内容,根据设备操作类型决定
  137. const modalType = ref(''); // 模态框内容显示类型,设备操作类型
  138. const deviceBaseList = ref([]);
  139. const activeKey = ref('1');
  140. const loading = ref(false);
  141. const windowAngle = ref(0);
  142. const rotationParam = {
  143. frontDeg0: 0, // 前门初始
  144. frontDeg1: windowAngle.value, // 前门目标
  145. backDeg0: 0, // 后门初始
  146. backDeg1: windowAngle.value, // 后门目标
  147. };
  148. // 默认初始是第一行
  149. const selectRowIndex = ref(0);
  150. const dataSource = ref([]);
  151. // webSocket 请求
  152. // const dataSource = computed(() => {
  153. // const data = [...getRecordList()] || [];
  154. // Object.assign(selectData, toRaw(data[selectRowIndex.value]));
  155. // addFmText(selectData);
  156. // return data;
  157. // });
  158. const flvURL1 = () => {
  159. // return `https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/flv/xgplayer-demo-360p.flv`;
  160. return ''
  161. };
  162. const flvURL2 = () => {
  163. return `https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/flv/xgplayer-demo-360p.flv`;
  164. };
  165. // 设备数据
  166. const controlType = ref(1);
  167. const tabChange = (activeKeyVal) => {
  168. activeKey.value = activeKeyVal;
  169. };
  170. const initData = {
  171. deviceID: '',
  172. deviceType: '',
  173. strname: '',
  174. dataDh: '-', //压差
  175. dataDtestq: '-', //测试风量
  176. sourcePressure: '-', //气源压力
  177. dataDequivalarea: '-',
  178. netStatus: '0', //通信状态
  179. fault: '气源压力超限',
  180. forntArea: '0',
  181. rearArea: '0',
  182. frontRearDifference: '-',
  183. rearPresentValue: '-',
  184. maxarea: '',
  185. nwindownum: 0
  186. };
  187. // 监测数据
  188. const selectData = reactive(lodash.cloneDeep(initData));
  189. // https获取监测数据
  190. let timer: null | NodeJS.Timeout = null;
  191. const getMonitor = () => {
  192. if (Object.prototype.toString.call(timer) === '[object Null]') {
  193. timer = setTimeout(async () => {
  194. const data = await getDataSource();
  195. Object.assign(selectData, data);
  196. playAnimation(selectData, selectData.maxarea);
  197. addFmText(selectData);
  198. if (timer) {
  199. timer = null;
  200. }
  201. getMonitor();
  202. }, 1000);
  203. }
  204. };
  205. const getDataSource = async () => {
  206. const res = await list({ devicetype: 'window', pagetype: 'normal' });
  207. dataSource.value = res.msgTxt[0].datalist || [];
  208. dataSource.value.forEach((data: any) => {
  209. const readData = data.readData;
  210. data = Object.assign(data, readData);
  211. });
  212. const data: any = toRaw(dataSource.value[selectRowIndex.value]); //maxarea
  213. return data;
  214. };
  215. // 获取设备基本信息列表
  216. const getDeviceBaseList = () => {
  217. getTableList({ pageSize: 1000 }).then((res) => {
  218. deviceBaseList.value = res.records;
  219. });
  220. };
  221. // 切换检测数据
  222. const getSelectRow = (selectRow, index) => {
  223. if (!selectRow) return;
  224. selectRowIndex.value = index;
  225. loading.value = true;
  226. const baseData: any = deviceBaseList.value.find((baseData: any) => baseData.id === selectRow.deviceID);
  227. Object.assign(selectData, initData, selectRow, baseData);
  228. const type = selectData.nwindownum == 1 ? 'singleWindow' : 'doubleWindow';
  229. setModelType(type).then(() => {
  230. addFmText(selectData);
  231. playAnimation(selectRow, baseData.maxarea, true);
  232. loading.value = false;
  233. });
  234. };
  235. // 判断前后窗的面积是否发生改变,如果改变则开启动画
  236. const playAnimation = (data, maxarea = 90, isFirst = false) => {
  237. maxarea = 90
  238. rotationParam.frontDeg0 = (90 / maxarea) * Number(isFirst ? 0 : selectData.forntArea);
  239. rotationParam.backDeg0 = (90 / maxarea) * Number(isFirst ? 0 : selectData.rearArea);
  240. rotationParam.frontDeg1 = (90 / maxarea) * Number(data.forntArea) || 0;
  241. rotationParam.backDeg1 = (90 / maxarea) * Number(data.rearArea) || 0;
  242. if (isFirst) {
  243. console.log('最大面积---->', maxarea, '前窗实际面积---->', selectData.forntArea, '后窗实际面积---->', selectData.rearArea, '计算的值---->', rotationParam);
  244. }
  245. if (!rotationParam.frontDeg1 && !rotationParam.backDeg1) {
  246. // 当返回值有误时默认关闭
  247. play(rotationParam, 0);
  248. } else {
  249. if (data.nwindownum == 1 || data.nwindownum == 2) {
  250. setTimeout(() => {
  251. play(rotationParam, 1);
  252. }, 0);
  253. }
  254. if (data.nwindownum == 2) {
  255. setTimeout(() => {
  256. play(rotationParam, 2);
  257. }, 0);
  258. }
  259. }
  260. };
  261. // 设置风窗面积
  262. const setArea = (flag) => {
  263. if(selectData.nwindownum == 2){
  264. modalTitle.value = flag === 1 ? '设定前窗面积' : '设定后窗面积';
  265. }else {
  266. modalTitle.value = '设定风窗面积'
  267. }
  268. modalType.value = flag+'';
  269. modalIsShow.value = true;
  270. };
  271. const handleOK = (passWord, handlerState, windowAngleNum) => {
  272. windowAngle.value = windowAngleNum;
  273. if (passWord !== '123456') {
  274. message.warning('密码不正确,请重新输入');
  275. return;
  276. }
  277. const data = {
  278. deviceid: selectData.deviceID,
  279. devicetype: selectData.deviceType,
  280. paramcode: handlerState == 1 ? 'frontSetValue' : 'rearSetValue',
  281. value: windowAngle.value,
  282. };
  283. deviceControlApi(data)
  284. .then((res) => {
  285. if (res.success) {
  286. }
  287. })
  288. .finally(() => {
  289. handleCancel();
  290. });
  291. };
  292. const handleCancel = () => {
  293. modalIsShow.value = false;
  294. modalTitle.value = '';
  295. modalType.value = '';
  296. };
  297. const addPlayVideo = () => {
  298. if (player1.value.play && player2.value.play) {
  299. if (!player1.value.paused()) player1.value.play();
  300. if (!player2.value.paused()) player2.value.play();
  301. document.body.removeEventListener('mousedown', addPlayVideo);
  302. }
  303. };
  304. onBeforeMount(() => {
  305. // const sendVal = JSON.stringify({ pagetype: 'normal', devicetype: 'window', orgcode: '', ids: '', systemID: '' });
  306. // initWebSocket(sendVal);
  307. getDeviceBaseList();
  308. });
  309. onMounted(() => {
  310. loading.value = true;
  311. mountedThree(player1.value, player2.value).then(async () => {
  312. // await setModelType('singleWindow');
  313. loading.value = false;
  314. addFmText(selectData);
  315. getMonitor();
  316. });
  317. document.body.addEventListener('mousedown', addPlayVideo, false);
  318. });
  319. onUnmounted(() => {
  320. destroy();
  321. if (timer) {
  322. clearTimeout(timer);
  323. timer = undefined;
  324. }
  325. });
  326. </script>
  327. <style lang="less" scoped>
  328. @import '/@/design/vent/modal.less';
  329. @ventSpace: zxm;
  330. :deep(.@{ventSpace}-tabs-tabpane-active) {
  331. overflow: auto;
  332. }
  333. .input-box {
  334. display: flex;
  335. align-items: center;
  336. padding-left: 10px;
  337. .input-title {
  338. color: #73e8fe;
  339. width: auto;
  340. }
  341. .@{ventSpace}-input-number {
  342. border-color: #ffffff88 !important;
  343. }
  344. margin-right: 10px;
  345. }
  346. </style>