index.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  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="title-text">
  40. {{ selectData.strinstallpos }}
  41. </div>
  42. <div class="bottom-tabs-box" @mousedown="setDivHeight($event, 240, scroll)">
  43. <a-tabs class="tabs-box" v-model:activeKey="activeKey" @change="tabChange">
  44. <a-tab-pane key="1" tab="实时监测">
  45. <GroupMonitorTable v-if="activeKey === '1' && isRefresh" :dataSource="dataSource" columnsType="sys_surface_junya" @selectRow="getSelectRow" :scroll="scroll"/>
  46. </a-tab-pane>
  47. <a-tab-pane key="2" tab="实时曲线图" force-render>
  48. <div class="tab-item" v-if="activeKey === '2' && isRefresh">
  49. <div class="vent-flex-row-between" style="height: 100%">
  50. <BarSingle
  51. :xAxisData="[
  52. { key: 'T1', valueKey: 'gas1' },
  53. { key: 'T2', valueKey: 'gas2' },
  54. { key: 'T3', valueKey: 'gas3' },
  55. { key: 'T4', valueKey: 'gas4' },
  56. ]"
  57. :dataSource="dataSource[selectRowIndex]"
  58. height="100%"
  59. :chartsColumns="chartsColumns"
  60. style="flex: 3"
  61. />
  62. <BarSingle
  63. :xAxisData="[
  64. { key: 'F1', valueKey: 'windQuantity1' },
  65. { key: 'F2', valueKey: 'windQuantity2' },
  66. ]"
  67. :dataSource="dataSource[selectRowIndex]"
  68. height="100%"
  69. :chartsColumns="chartsColumns1"
  70. style="flex: 2"
  71. />
  72. </div>
  73. </div>
  74. </a-tab-pane>
  75. <a-tab-pane key="3" tab="历史数据">
  76. <div class="tab-item" v-if="activeKey === '3' && isRefresh">
  77. <HistoryTable columns-type="sys_surface_junya" device-type="sys_surface_junya" :device-list-api="baseList" designScope="sys_surface_junya-history" />
  78. </div>
  79. </a-tab-pane>
  80. <a-tab-pane key="4" tab="报警历史">
  81. <div class="tab-item" v-if="activeKey === '4' && isRefresh">
  82. <AlarmHistoryTable columns-type="alarm" device-type="sys_surface_junya" :device-list-api="baseList" designScope="alarm-history" />
  83. </div>
  84. </a-tab-pane>
  85. <a-tab-pane key="5" tab="操作历史">
  86. <div class="tab-item" v-if="activeKey === '5' && isRefresh">
  87. <HandlerHistoryTable columns-type="operatorhistory" device-type="sys_surface_junya" :device-list-api="baseList" designScope="alarm-history" />
  88. </div>
  89. </a-tab-pane>
  90. </a-tabs>
  91. </div>
  92. </div>
  93. <div style="z-index: -1; position: absolute; top: 50px; right: 10px; width: 300px; height: 280px; margin: auto" class="player1">
  94. <LivePlayer id="jb-player1" ref="player1" :videoUrl="flvURL1()" muted live loading controls />
  95. </div>
  96. </template>
  97. <script setup lang="ts">
  98. import { onBeforeMount, ref, onMounted, nextTick, toRaw, reactive, onUnmounted, watch } from 'vue';
  99. import BarSingle from '../../../../components/chart/BarSingle.vue';
  100. import GroupMonitorTable from '../comment/GroupMonitorTable.vue';
  101. import HistoryTable from '../comment/HistoryTable.vue';
  102. import AlarmHistoryTable from '../comment/AlarmHistoryTable.vue';
  103. import HandlerHistoryTable from '../comment/HandlerHistoryTable.vue';
  104. import { mountedThree, setModelType, destroy, addCssText, addText, playSmoke } from './balancePress.three';
  105. import lodash from 'lodash';
  106. import { getTableList, list } from '/@/views/vent/monitorManager/fanLocalMonitor/fanLocal.api';
  107. import { list as baseList } from '../../deviceManager/fanTabel/fan.api';
  108. import { chartsColumns, chartsColumns1 } from './balancePress.data';
  109. import LivePlayer from '@liveqing/liveplayer-v3';
  110. import { setDivHeight } from '/@/utils/event';
  111. const isRefresh = ref(true)
  112. const scroll = reactive({
  113. y: 180
  114. })
  115. const loading = ref(false);
  116. const activeKey = ref('1');
  117. const player1 = ref();
  118. // 默认初始是第一行
  119. const selectRowIndex = ref(0);
  120. // 监测数据
  121. const initData = {
  122. deviceID: '',
  123. deviceType: '',
  124. strname: '',
  125. dataDh: '-', //压差
  126. dataDtestq: '-', //测试风量
  127. sourcePressure: '-', //气源压力
  128. dataDequivalarea: '-',
  129. netStatus: '0', //通信状态
  130. fault: '气源压力超限',
  131. };
  132. const flvURL1 = () => {
  133. // return `https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/flv/xgplayer-demo-360p.flv`;
  134. return ''
  135. };
  136. // 监测数据
  137. const selectData = reactive(lodash.cloneDeep(initData));
  138. const tabChange = (activeKeyVal) => {
  139. activeKey.value = activeKeyVal;
  140. };
  141. const dataSource = ref([]);
  142. //
  143. async function getDataSource(){
  144. const res = await list({ devicetype: 'sys_surface_junya', pagetype: 'normal' });
  145. const dataArr = res.msgTxt[0].datalist || [];
  146. dataSource.value = [];
  147. dataArr.forEach((data) => {
  148. const readData = data.readData;
  149. data = Object.assign(data, readData);
  150. dataSource.value.push(data);
  151. });
  152. const data: any = toRaw(dataSource.value[selectRowIndex.value]); //maxarea
  153. return data;
  154. };
  155. // https获取监测数据
  156. let timer: null | NodeJS.Timeout = null;
  157. function getMonitor(flag?) {
  158. if (Object.prototype.toString.call(timer) === '[object Null]') {
  159. timer = setTimeout(async () => {
  160. await getDataSource();
  161. Object.assign(selectData, deviceBaseList.value, dataSource.value[selectRowIndex.value]);
  162. addText(selectData);
  163. // playAnimation(data, selectData.maxarea);
  164. if (timer) {
  165. timer = null;
  166. }
  167. getMonitor();
  168. }, flag ? 0 :1000);
  169. }
  170. };
  171. // 获取设备基本信息列表
  172. const deviceBaseList = ref([]);
  173. function getDeviceBaseList() {
  174. getTableList({ pageSize: 1000 }).then((res) => {
  175. deviceBaseList.value = res.records;
  176. });
  177. };
  178. // 切换检测数据
  179. function getSelectRow(id) {
  180. if (!id) return;
  181. loading.value = true;
  182. const baseDataIndex: any = dataSource.value.findIndex((baseData: any) => baseData.deviceID === id);
  183. selectRowIndex.value = baseDataIndex;
  184. const type = baseDataIndex > 0 ? 'fm' : 'fc';
  185. setModelType(type).then(() => {
  186. loading.value = false;
  187. });
  188. // const data = dataSource.value[baseDataIndex];
  189. // addCssText(selectRowIndex.value);
  190. return;
  191. };
  192. function addPlayVideo() {
  193. if (player1.value && player1.value.play) {
  194. if (!player1.value.paused()) player1.value.play();
  195. document.body.removeEventListener('mousedown', addPlayVideo);
  196. }
  197. };
  198. watch(() => scroll.y, () => {
  199. isRefresh.value = false
  200. nextTick(() => {
  201. isRefresh.value = true
  202. })
  203. })
  204. onBeforeMount(() => {
  205. getDeviceBaseList();
  206. });
  207. onMounted(() => {
  208. // loading.value = true;
  209. mountedThree(player1.value).then(() => {
  210. nextTick(() => {
  211. getMonitor(true);
  212. // addCssText(selectRowIndex.value);
  213. playSmoke('startSmoke', 'top', 30, 'open');
  214. });
  215. });
  216. document.body.addEventListener('mousedown', addPlayVideo, false);
  217. });
  218. onUnmounted(() => {
  219. destroy();
  220. if (timer) {
  221. clearTimeout(timer);
  222. timer = undefined;
  223. }
  224. });
  225. </script>
  226. <style scoped lang="less">
  227. @import '/@/design/vent/modal.less';
  228. :deep(.@{ventSpace}-tabs-tabpane-active) {
  229. overflow: auto;
  230. }
  231. .input-box {
  232. display: flex;
  233. align-items: center;
  234. .input-title {
  235. color: #73e8fe;
  236. width: auto;
  237. }
  238. margin-right: 10px;
  239. }
  240. .label {
  241. max-width: 220px;
  242. }
  243. .@{ventSpace}-input {
  244. width: 150px;
  245. }
  246. </style>