index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  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="fanLocal3D" style="width: 100%; height: 100%; position: absolute; overflow: hidden"> </div>
  5. <div id="fanLocal3DCSS" class="threejs-Object-CSS" style="width: 100%; height: 100%; position: absolute; overflow: hidden">
  6. <div style="z-index: -1; position: relative">
  7. <div class="elementTag" id="inputBox">
  8. <div class="elementContent">
  9. <p>风筒入口风速:{{ selectData.windSpeed1 ? selectData.windSpeed1 : '-' }}</p>
  10. <p>风筒入口瓦斯浓度 {{ selectData.gas1 ? selectData.gas1 : '-' }}</p>
  11. </div>
  12. </div>
  13. <div class="elementTag" id="outBox">
  14. <div class="elementContent elementContent-r">
  15. <p>迎头供风量:{{ selectData.windQuantity1 ? selectData.windQuantity2 : '-' }}</p>
  16. <p>迎头瓦斯浓度:{{ selectData.gas1 ? selectData.gas1 : '-' }}</p>
  17. </div>
  18. </div>
  19. <div class="elementTag" id="returnBox">
  20. <div class="elementContent">
  21. <p>回风流瓦斯浓度:{{ selectData.gas3 ? selectData.gas3 : '-' }}</p>
  22. </div>
  23. </div>
  24. <div class="elementTag" id="gateBox">
  25. <div class="elementContent">
  26. <p>风门状态:关</p>
  27. <p>风门过风面积:{{ selectData.gas1 ? selectData.gas1 : '-' }}</p>
  28. </div>
  29. </div>
  30. <div class="elementTag" id="windownBox">
  31. <div class="elementContent">
  32. <p>风窗全风压回风流:0</p>
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. <div class="scene-box">
  39. <div class="top-box">
  40. <div class="top-center row">
  41. <div class="button-box" v-for="(item, index) in modalTypeArr.leftBtnArr" :key="index" @click="showModal(item)">{{ item.value }}</div>
  42. </div>
  43. <div class="top-right row">
  44. <div class="button-box" v-for="(item, index) in modalTypeArr.rightBtnArr" :key="index" @click="showModal(item)">{{ item.value }}</div>
  45. </div>
  46. </div>
  47. <div class="title-text">
  48. {{ selectData.stationname }}
  49. </div>
  50. <div class="bottom-tabs-box">
  51. <a-tabs class="tabs-box" v-model:activeKey="activeKey" @change="tabChange">
  52. <a-tab-pane key="1" tab="实时监测">
  53. <GroupMonitorTable :dataSource="dataSource" columnsType="fanlocal_monitor" @selectRow="getSelectRow" />
  54. <!-- <MonitorTable
  55. columnsType="fanlocal_monitor"
  56. :dataSource="dataSource"
  57. @selectRow="getSelectRow"
  58. design-scope="fanlocal-monitor"
  59. title="局部通风机监测"
  60. /> -->
  61. </a-tab-pane>
  62. <a-tab-pane key="2" tab="实时曲线图" force-render>
  63. <div class="tab-item" v-if="activeKey === '2'">
  64. <div class="vent-flex-row-between" style="height: 100%">
  65. <BarSingle
  66. :xAxisData="[
  67. { key: 'T1', valueKey: 'gas1' },
  68. { key: 'T2', valueKey: 'gas2' },
  69. { key: 'T3', valueKey: 'gas3' },
  70. { key: 'T4', valueKey: 'gas4' },
  71. ]"
  72. :dataSource="dataSource[selectRowIndex]"
  73. height="100%"
  74. :chartsColumns="chartsColumns"
  75. style="flex: 3"
  76. />
  77. <BarSingle
  78. :xAxisData="[
  79. { key: 'F1', valueKey: 'windQuantity1' },
  80. { key: 'F2', valueKey: 'windQuantity2' },
  81. ]"
  82. :dataSource="dataSource[selectRowIndex]"
  83. height="100%"
  84. :chartsColumns="chartsColumns1"
  85. style="flex: 2"
  86. />
  87. </div>
  88. </div>
  89. </a-tab-pane>
  90. <a-tab-pane key="3" tab="历史数据">
  91. <div class="tab-item">
  92. <HistoryTable columns-type="fanlocal" device-type="fanlocal" :device-list-api="baseList" designScope="fanlocal-history" />
  93. </div>
  94. </a-tab-pane>
  95. <a-tab-pane key="4" tab="报警历史">
  96. <div class="tab-item">
  97. <AlarmHistoryTable columns-type="alarm" device-type="fanlocal" :device-list-api="baseList" designScope="alarm-history" />
  98. </div>
  99. </a-tab-pane>
  100. <a-tab-pane key="5" tab="操作历史">
  101. <div class="tab-item">
  102. <HandlerHistoryTable columns-type="operatorhistory" device-type="fanlocal" :device-list-api="baseList" designScope="alarm-history" />
  103. </div>
  104. </a-tab-pane>
  105. </a-tabs>
  106. </div>
  107. </div>
  108. <div style="z-index: -1; position: absolute; top: 50px; right: 10px; width: 300px; height: 280px; margin: auto" class="player1">
  109. <LivePlayer id="jb-player1" ref="player1" :videoUrl="flvURL1()" muted live loading controls />
  110. </div>
  111. <a-modal v-model:visible="modalIsShow" :title="modalTitle" @ok="handleOk">
  112. <div class="modal-container">
  113. <div class="vent-flex-row">
  114. <ExclamationCircleFilled style="color: #ffb700; font-size: 30px" />
  115. <div class="warning-text">您是否要进行{{ modalTitle }}操作?</div>
  116. </div>
  117. <div class="" v-if="modalType == 'startSmoke'">
  118. <div class="startSmoke-select">
  119. <div class="label">1#风机:</div>
  120. <a-radio-group v-model:value="mainWindIsShow1" @change="changeMotor" name="localWind1">
  121. <a-radio value="open">开启</a-radio>
  122. <a-radio value="stop">停止</a-radio>
  123. </a-radio-group>
  124. </div>
  125. <div class="startSmoke-select">
  126. <div class="label">2#风机:</div>
  127. <a-radio-group v-model:value="mainWindIsShow2" @change="changeMotor" name="localWind2">
  128. <a-radio value="open">开启</a-radio>
  129. <a-radio value="stop">停止</a-radio>
  130. </a-radio-group>
  131. </div>
  132. </div>
  133. <!-- 调频 -->
  134. <div class="vent-flex-row input-box" v-if="modalType == 'frequency'">
  135. <div class="label">运行频率(单位):</div>
  136. <a-input-number size="small" v-model:value="frequencyVal" :min="30" :max="50" :step="0.1" />
  137. </div>
  138. <div class="vent-flex-row input-box" v-if="modalType == 'needAir'">
  139. <div class="label">需风量(单位):</div>
  140. <a-input-number size="small" v-model:value="frequencyVal" :min="30" :max="50" :step="0.1" />
  141. </div>
  142. <div class="vent-flex-row input-box" v-if="modalType == 'disAirAlarm'">
  143. <div class="label">漏风率(%):</div>
  144. <a-input-number size="small" v-model:value="frequencyVal" :min="0" :max="50" :step="0.1" />
  145. </div>
  146. <div class="vent-flex-row input-box" v-if="modalType == 'diameter'">
  147. <div class="label">风筒直径(m):</div>
  148. <a-input-number size="small" v-model:value="frequencyVal" :min="0" :max="50" :step="0.1" />
  149. </div>
  150. <div class="vent-flex-row input-box" v-if="modalType == 'len'">
  151. <div class="label">风筒长度(m):</div>
  152. <a-input-number size="small" v-model:value="frequencyVal" :min="0" :max="50" :step="0.1" />
  153. </div>
  154. <div class="vent-flex-row input-box" v-if="modalType == 'windPowerLimit'">
  155. <div class="label">风电闭锁限值(m³/min):</div>
  156. <a-input-number size="small" v-model:value="frequencyVal" :min="0" :max="50" :step="0.1" />
  157. </div>
  158. <div class="vent-flex-row input-box" v-if="modalType == 'gasPowerLimit'">
  159. <div class="label">瓦斯电闭锁限值(m³/min):</div>
  160. <a-input-number size="small" v-model:value="frequencyVal" :min="0" :max="50" :step="0.1" />
  161. </div>
  162. <div v-if="modalType == 'gasAlarm'">
  163. <div class="vent-flex-row input-box">
  164. <div class="label">传感器名称:</div>
  165. <a-select placeholder="传感器" @change="handleChangeSensor" :options="sensorList" v-model:value="modalSensor" />
  166. </div>
  167. <div class="vent-flex-row input-box">
  168. <div class="label">传感器值:</div>
  169. <a-input-number size="small" v-model:value="frequencyVal" :min="0" :max="50" :step="0.1" />
  170. </div>
  171. </div>
  172. <div v-if="modalType == 'airVolumeAlarm'">
  173. <div class="vent-flex-row input-box">
  174. <div class="label">风量上限(m³/min):</div>
  175. <a-input-number size="small" v-model:value="modalTypeArr.rightBtnArr[3].min" :min="0" :max="50" :step="0.1" />
  176. </div>
  177. <div class="vent-flex-row input-box">
  178. <div class="label">风量下限(m³/min):</div>
  179. <a-input-number size="small" v-model:value="modalTypeArr.rightBtnArr[3].max" :min="0" :max="50" :step="0.1" />
  180. </div>
  181. </div>
  182. <!-- 启动或停止 -->
  183. <div class="" v-if="modalType == 'startSmoke'"> </div>
  184. <div class="vent-flex-row input-box">
  185. <div class="label">操作密码:</div>
  186. <a-input size="small" type="password" v-model:value="passWord" />
  187. </div>
  188. </div>
  189. </a-modal>
  190. </template>
  191. <script setup lang="ts">
  192. import { ExclamationCircleFilled } from '@ant-design/icons-vue';
  193. import { onBeforeMount, ref, onMounted, nextTick, toRaw, reactive, onUnmounted } from 'vue';
  194. import BarSingle from '../../../../components/chart/BarSingle.vue';
  195. import GroupMonitorTable from '../comment/GroupMonitorTable.vue';
  196. import HistoryTable from '../comment/HistoryTable.vue';
  197. import AlarmHistoryTable from '../comment/AlarmHistoryTable.vue';
  198. import HandlerHistoryTable from '../comment/HandlerHistoryTable.vue';
  199. import { mountedThree, setModelType, destroy, addCssText, addText, playSmoke } from './fanLocal.three';
  200. import lodash from 'lodash';
  201. import { getTableList, list } from '/@/views/vent/monitorManager/fanLocalMonitor/fanLocal.api';
  202. import { list as baseList } from '../../deviceManager/fanTabel/fan.api';
  203. import { chartsColumns, chartsColumns1 } from './fanLocal.data';
  204. import { deviceControlApi } from '/@/api/vent/index';
  205. import LivePlayer from '@liveqing/liveplayer-v3';
  206. import { message } from 'ant-design-vue';
  207. const modalTypeArr = reactive({
  208. leftBtnArr: [
  209. {
  210. key: 'startSmoke',
  211. value: '启动风机',
  212. },
  213. {
  214. key: 'changeSmoke',
  215. value: '一键倒机',
  216. },
  217. {
  218. key: 'windPower',
  219. value: '风电闭锁',
  220. },
  221. {
  222. key: 'gasPower',
  223. value: '瓦斯电闭锁',
  224. },
  225. {
  226. key: 'needAir',
  227. value: '需风量',
  228. },
  229. {
  230. key: 'diameter',
  231. value: '风筒直径',
  232. },
  233. {
  234. key: 'len',
  235. value: '风筒长度',
  236. },
  237. ],
  238. rightBtnArr: [
  239. {
  240. key: 'frequency',
  241. value: '调频',
  242. },
  243. {
  244. key: 'windPowerLimit',
  245. value: '风电闭锁限值',
  246. },
  247. {
  248. key: 'gasPowerLimit',
  249. value: '瓦斯电闭锁限值',
  250. },
  251. {
  252. key: 'airVolumeAlarm',
  253. value: '风量报警',
  254. min: 0,
  255. max: 100,
  256. },
  257. {
  258. key: 'disAirAlarm',
  259. value: '漏风率报警',
  260. },
  261. {
  262. key: 'gasAlarm',
  263. value: '瓦斯报警',
  264. },
  265. ],
  266. });
  267. const sensorList = ref<any[]>([
  268. {
  269. value: '1',
  270. label: 'T1',
  271. },
  272. {
  273. value: '2',
  274. label: 'T2',
  275. },
  276. {
  277. value: '3',
  278. label: 'T3',
  279. },
  280. ]);
  281. const modalSensor = ref(null);
  282. const loading = ref(false);
  283. const activeKey = ref('1');
  284. const player1 = ref();
  285. const modalIsShow = ref<boolean>(false); // 是否显示模态框
  286. const modalTitle = ref(''); // 模态框标题显示内容,根据设备操作类型决定
  287. const modalType = ref(''); // 模态框内容显示类型,设备操作类型
  288. const frequencyVal = ref(40); //频率
  289. const mainWindIsShow1 = ref('open'); // 1#风机默认启动
  290. const mainWindIsShow2 = ref('stop'); // 2#风机默认不启动
  291. const passWord = ref('');
  292. // 默认初始是第一行
  293. const selectRowIndex = ref(0);
  294. // 设备数据
  295. const controlType = ref(1);
  296. // 监测数据
  297. const initData = {
  298. deviceID: '',
  299. deviceType: '',
  300. strname: '',
  301. dataDh: '-', //压差
  302. dataDtestq: '-', //测试风量
  303. sourcePressure: '-', //气源压力
  304. dataDequivalarea: '-',
  305. netStatus: '0', //通信状态
  306. fault: '气源压力超限',
  307. };
  308. const flvURL1 = () => {
  309. // return `https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/flv/xgplayer-demo-360p.flv`;
  310. return ''
  311. };
  312. // 监测数据
  313. const selectData = reactive(lodash.cloneDeep(initData));
  314. // const dataSource = computed(() => {
  315. // const data = [...getRecordList()] || [];
  316. // Object.assign(selectData, toRaw(data[selectRowIndex.value]));
  317. // return data;
  318. // });
  319. const tabChange = (activeKeyVal) => {
  320. activeKey.value = activeKeyVal;
  321. };
  322. const dataSource = ref([]);
  323. //
  324. async function getDataSource(){
  325. const res = await list({ devicetype: 'fanlocal', pagetype: 'normal' });
  326. const dataArr = res.msgTxt[0].datalist || [];
  327. dataSource.value = [];
  328. dataArr.forEach((data) => {
  329. const readData = data.readData;
  330. data = Object.assign(data, readData);
  331. dataSource.value.push(data);
  332. });
  333. const data: any = toRaw(dataSource.value[selectRowIndex.value]); //maxarea
  334. return data;
  335. };
  336. // https获取监测数据
  337. let timer: null | NodeJS.Timeout = null;
  338. function getMonitor() {
  339. if (Object.prototype.toString.call(timer) === '[object Null]') {
  340. timer = setTimeout(async () => {
  341. await getDataSource();
  342. Object.assign(selectData, deviceBaseList.value, dataSource.value[selectRowIndex.value]);
  343. addText(selectData);
  344. // playAnimation(data, selectData.maxarea);
  345. if (timer) {
  346. timer = null;
  347. }
  348. getMonitor();
  349. }, 1000);
  350. }
  351. };
  352. // 获取设备基本信息列表
  353. const deviceBaseList = ref([]);
  354. function getDeviceBaseList() {
  355. getTableList({ pageSize: 1000 }).then((res) => {
  356. deviceBaseList.value = res.records;
  357. });
  358. };
  359. // 切换检测数据
  360. function getSelectRow(id) {
  361. if (!id) return;
  362. loading.value = true;
  363. const baseDataIndex: any = dataSource.value.findIndex((baseData: any) => baseData.deviceID === id);
  364. selectRowIndex.value = baseDataIndex;
  365. const type = baseDataIndex > 0 ? 'fm' : 'fc';
  366. setModelType(type).then(() => {
  367. loading.value = false;
  368. });
  369. const data = dataSource.value[baseDataIndex];
  370. // mainWindIsShow1.value = 'stop';
  371. // mainWindIsShow2.value = 'stop';
  372. if (data['fanStart1'] == 1) {
  373. mainWindIsShow1.value = 'open';
  374. mainWindIsShow2.value = 'stop';
  375. } else if (data['fanStart2'] == 1) {
  376. mainWindIsShow2.value = 'open';
  377. mainWindIsShow1.value = 'stop';
  378. }
  379. addCssText(selectRowIndex.value);
  380. return;
  381. };
  382. // 打开并设置modal的标题
  383. function showModal(obj) {
  384. modalType.value = obj.key;
  385. modalTitle.value = obj.value;
  386. modalIsShow.value = true;
  387. };
  388. function changeMotor(e){
  389. const target = e.target;
  390. if (target.name === 'localWind1') {
  391. if (target.value === 'open') {
  392. mainWindIsShow2.value = 'stop';
  393. }
  394. } else if (target.name === 'localWind2') {
  395. if (target.value === 'open') {
  396. mainWindIsShow1.value = 'stop';
  397. }
  398. }
  399. };
  400. function handleOk(e: MouseEvent) {
  401. if (passWord.value !== '123456') {
  402. message.warning('密码不正确,请重新输入');
  403. return;
  404. }
  405. const handType = modalType.value;
  406. const frequency = frequencyVal.value;
  407. const data = {
  408. deviceid: selectData.deviceID,
  409. devicetype: 'fanlocal_systeml_zj',
  410. paramcode: '',
  411. value: null,
  412. };
  413. if (handType === 'startSmoke') {
  414. console.log(mainWindIsShow1.value, mainWindIsShow2.value);
  415. // 启动风机
  416. if (mainWindIsShow1.value === 'open' && mainWindIsShow2.value === 'stop') {
  417. playSmoke(handType, 'top', frequency, 'open');
  418. data.paramcode = 'fanRun1';
  419. deviceControlApi(data).then((res) => {
  420. console.log('设备操作结果', res);
  421. });
  422. } else if (mainWindIsShow2.value === 'open' && mainWindIsShow1.value === 'stop') {
  423. playSmoke(handType, 'down', frequency, 'open');
  424. data.paramcode = 'fanRun2';
  425. deviceControlApi(data).then((res) => {
  426. console.log('设备操作结果', res);
  427. });
  428. } else if (mainWindIsShow1.value === 'stop' && mainWindIsShow2.value === 'stop') {
  429. playSmoke(handType, '', frequency, 'stop');
  430. }
  431. } else if (handType === 'frequency') {
  432. // 调频
  433. playSmoke(handType, 'top', frequency, '');
  434. if (mainWindIsShow1.value === 'open') {
  435. data.paramcode = 'power1';
  436. } else if (mainWindIsShow2.value === 'open') {
  437. data.paramcode = 'power2';
  438. }
  439. data.value = frequency;
  440. deviceControlApi(data).then((res) => {
  441. console.log('设备操作结果', res);
  442. });
  443. } else if (handType === 'changeSmoke') {
  444. // 一键倒机
  445. if (mainWindIsShow1.value === 'open' && mainWindIsShow2.value === 'stop') {
  446. playSmoke('startSmoke', 'down', frequency, 'open');
  447. data.paramcode = 'fanRun2';
  448. deviceControlApi(data).then((res) => {
  449. console.log('设备操作结果', res);
  450. });
  451. mainWindIsShow1.value = 'stop';
  452. mainWindIsShow2.value = 'open';
  453. } else if (mainWindIsShow2.value === 'open' && mainWindIsShow1.value === 'stop') {
  454. playSmoke('startSmoke', 'top', frequency, 'open');
  455. data.paramcode = 'fanRun1';
  456. deviceControlApi(data).then((res) => {
  457. console.log('设备操作结果', res);
  458. });
  459. mainWindIsShow1.value = 'open';
  460. mainWindIsShow2.value = 'stop';
  461. } else if (mainWindIsShow1.value === 'stop' && mainWindIsShow2.value === 'stop') {
  462. playSmoke(handType, '', frequency, 'stop');
  463. }
  464. }
  465. modalTitle.value = '';
  466. modalIsShow.value = false;
  467. };
  468. function handleChangeSensor(value: string){
  469. console.log(value);
  470. };
  471. function addPlayVideo() {
  472. if (player1.value && player1.value.play) {
  473. if (!player1.value.paused()) player1.value.play();
  474. document.body.removeEventListener('mousedown', addPlayVideo);
  475. }
  476. };
  477. onBeforeMount(() => {
  478. getDeviceBaseList();
  479. });
  480. onMounted(() => {
  481. // loading.value = true;
  482. mountedThree(player1.value).then(() => {
  483. nextTick(() => {
  484. getMonitor();
  485. // addCssText(selectRowIndex.value);
  486. playSmoke('startSmoke', 'top', frequencyVal.value, 'open');
  487. });
  488. });
  489. document.body.addEventListener('mousedown', addPlayVideo, false);
  490. });
  491. onUnmounted(() => {
  492. destroy();
  493. if (timer) {
  494. clearTimeout(timer);
  495. timer = undefined;
  496. }
  497. });
  498. </script>
  499. <style scoped lang="less">
  500. @import '/@/design/vent/modal.less';
  501. :deep(.@{ventSpace}-tabs-tabpane-active) {
  502. overflow: auto;
  503. }
  504. .input-box {
  505. display: flex;
  506. align-items: center;
  507. .input-title {
  508. color: #73e8fe;
  509. width: auto;
  510. }
  511. margin-right: 10px;
  512. }
  513. .label {
  514. max-width: 220px;
  515. }
  516. .@{ventSpace}-input {
  517. width: 150px;
  518. }
  519. </style>