nitrogenHomeBLT.vue 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178
  1. <template>
  2. <div id="compressor3D" style="width: 100%; height: 100%; position: absolute; overflow: hidden"></div>
  3. <template v-for="(sysItem, sysIndex) in monitorDataGroupArr" :key="sysIndex">
  4. <div
  5. :id="`compressorCss3D${sysIndex + 1}`"
  6. class="threejs-Object-CSS compressorCss3D-box"
  7. style="width: 100%; height: 100%; position: absolute; pointer-events: none; overflow: hidden; z-index: 2; top: 0px; left: 0px"
  8. >
  9. </div>
  10. </template>
  11. <div v-for="(sysItem, sysIndex) in monitorDataGroupArr" :key="sysIndex">
  12. <div v-show="monitorDataGroupFlag == sysIndex + 1" style="width: 100%; height: 100%; position: absolute; overflow: hidden; z-index: -1">
  13. <div v-for="(groupNum, index) in sysItem" :key="index" class="modal-monitor">
  14. <fourBorderBg :class="`kyj${groupNum}`" :id="`nitrogenMonitor${groupNum}`">
  15. <div class="title">{{ kyjs[index] }} </div>
  16. <template v-for="(preMonitor, preMonitorIndex) in preMonitorList" :key="preMonitorIndex">
  17. <div v-if="preMonitor.code !== 'signal'" class="monitor-item">
  18. <span class="monitor-title">{{ preMonitor.title }}:</span>
  19. <span class="monitor-val"
  20. ><span class="val">{{
  21. monitorData[preMonitor.code.replace(prefix[0], `${prefix[0]}${groupNum}`)]
  22. ? formatNum(monitorData[preMonitor.code.replace(prefix[0], `${prefix[0]}${groupNum}`)])
  23. : '-'
  24. }}</span
  25. ><span class="unit">{{ preMonitor.unit }}</span></span
  26. >
  27. </div>
  28. <div v-else class="signal-item">
  29. <div class="signal" v-for="(signal, childIndex) in preMonitor.child" :key="childIndex">
  30. <span class="monitor-title">{{ signal.title }}</span>
  31. <span
  32. :class="{
  33. 'signal-round': true,
  34. 'signal-round-run': !signal.isWaring && monitorData[signal.code.replace(prefix[0], `${prefix[0]}${groupNum}`)] == '1',
  35. 'signal-round-warning': signal.isWaring && monitorData[signal.code.replace(prefix[0], `${prefix[0]}${groupNum}`)] == '1',
  36. 'signal-round-gry': monitorData[signal.code.replace(prefix[0], `${prefix[0]}${groupNum}`)] != '1',
  37. }"
  38. ></span>
  39. </div>
  40. </div>
  41. </template>
  42. </fourBorderBg>
  43. <fourBorderBg :class="`cqg${groupNum}`" :id="`cqgMonitor${groupNum}`">
  44. <div class="title">{{ cqgs[index] }}</div>
  45. <template v-for="(cqgMonitor, cqgMonitorIndex) in cqgMonitorList" :key="cqgMonitorIndex">
  46. <div class="monitor-item">
  47. <span class="monitor-title">{{ cqgMonitor.title }}:</span>
  48. <span class="monitor-val"
  49. ><span class="val">{{
  50. monitorData[cqgMonitor.code.replace(prefix[0], `${prefix[1]}${groupNum}`)]
  51. ? formatNum(monitorData[cqgMonitor.code.replace(prefix[1], `${prefix[1]}${groupNum}`)])
  52. : '-'
  53. }}</span
  54. ><span class="unit">{{ cqgMonitor.unit }}</span></span
  55. >
  56. </div>
  57. </template>
  58. </fourBorderBg>
  59. </div>
  60. </div>
  61. </div>
  62. <div class="nitrogen-home">
  63. <div style="position: absolute; color: #fff; top: 30px; pointer-events: auto; display: flex">
  64. <div
  65. v-for="(sysItem, sysIndex) in ['北风井', '南风井']"
  66. :key="sysIndex"
  67. class="tab-button-box"
  68. :class="{ 'tab-button-box-active': monitorDataGroupFlag == sysIndex + 1 }"
  69. @click="setMonitorGroupNum(sysIndex + 1)"
  70. >{{ sysItem }}
  71. <!-- (运行: <p style="padding: 0 5px"></p>
  72. <span
  73. :class="{
  74. 'signal-round': true,
  75. 'signal-round-run':
  76. sysIndex + 1 == 1 ? sysStateList[sysIndex] && sysStateList[sysIndex].isRun : sysStateList1[sysIndex] && sysStateList1[sysIndex].isRun,
  77. 'signal-round-gry':
  78. sysIndex + 1 == 1 ? sysStateList[sysIndex] && !sysStateList[sysIndex].isRun : sysStateList1[sysIndex] && !sysStateList1[sysIndex].isRun,
  79. }"
  80. ></span>
  81. <p style="padding: 0 5px"></p>故障:<p style="padding: 0 5px"></p
  82. ><span
  83. :class="{
  84. 'signal-round': true,
  85. 'signal-round-warning':
  86. sysIndex + 1 == 1 ? sysStateList[sysIndex] && sysStateList[sysIndex].fault : sysStateList1[sysIndex] && sysStateList1[sysIndex].fault,
  87. 'signal-round-gry':
  88. sysIndex + 1 == 1 ? sysStateList[sysIndex] && !sysStateList[sysIndex].fault : sysStateList1[sysIndex] && !sysStateList1[sysIndex].fault,
  89. }"
  90. ></span>
  91. <p style="padding: 0 5px"></p> ) -->
  92. </div>
  93. </div>
  94. <div class="total-data">
  95. <div class="vent-flex-row">
  96. <div class="item" v-for="(data, index) in totalData" :key="index"
  97. >{{ data.title + '(' + data.unit + ')' }}:<span class="val">{{
  98. monitorData[data.code] ? formatNum(monitorData[data.code]) : '-'
  99. }}</span></div
  100. >
  101. </div>
  102. </div>
  103. <div class="nitrogen-container">
  104. <div v-if="monitorData['netStatus'] == 0" class="device-state">网络断开</div>
  105. <div class="top-box">
  106. <!-- 左边监测数据 -->
  107. <div class="lr-box left-right-box">
  108. <div class="lr-container">
  109. <div class="item item-l" v-for="(groupNum, index) in monitorDataGroup" :key="index">
  110. <div class="monitor-box" v-if="groupNum !== 3">
  111. <ventBox1>
  112. <template #title>
  113. <div>{{ groupNum }}号压风机</div>
  114. </template>
  115. <template #container>
  116. <div class="state-item">
  117. <div class="item-col" v-for="(preFan, preFanIndex) in preFanMonitorData" :key="preFanIndex">
  118. <span class="state-title">{{ preFan.title + (preFan.unit !== 'signal' ? `(${preFan.unit})` : '') }}</span>
  119. <span v-if="preFan.unit !== 'signal'" class="state-val">{{
  120. monitorData[preFan.code.replace(prefix[2], prefix[2] + groupNum)] >= 0
  121. ? formatNum(Number(monitorData[preFan.code.replace(prefix[2], prefix[2] + groupNum)]))
  122. : '-'
  123. }}</span>
  124. <span
  125. v-else
  126. :class="{
  127. 'signal-round': true,
  128. 'signal-round-warning': monitorData[preFan.code.replace(prefix[2], `${prefix[2]}${groupNum}`)] == '1',
  129. 'signal-round-gry': monitorData[preFan.code.replace(prefix[2], `${prefix[2]}${groupNum}`)] != '1',
  130. }"
  131. ></span>
  132. </div>
  133. </div>
  134. </template>
  135. </ventBox1>
  136. </div>
  137. </div>
  138. </div>
  139. </div>
  140. <div class="lr-box left-right-box" style="margin-top: 80px">
  141. <div class="lr-container">
  142. <div class="item item-l" v-for="(groupNum, index) in monitorDataGroup" :key="index">
  143. <div class="monitor-box" v-if="groupNum === 3">
  144. <ventBox1>
  145. <template #title>
  146. <div>{{ groupNum }}号压风机</div>
  147. </template>
  148. <template #container>
  149. <div class="state-item">
  150. <div class="item-col" v-for="(preFan, preFanIndex) in preFanMonitorData" :key="preFanIndex">
  151. <span class="state-title">{{ preFan.title + (preFan.unit !== 'signal' ? `(${preFan.unit})` : '') }}</span>
  152. <span v-if="preFan.unit !== 'signal'" class="state-val">{{
  153. monitorData[preFan.code.replace(prefix[2], prefix[2] + groupNum)] >= 0
  154. ? formatNum(Number(monitorData[preFan.code.replace(prefix[2], prefix[2] + groupNum)]))
  155. : '-'
  156. }}</span>
  157. <span
  158. v-else
  159. :class="{
  160. 'signal-round': true,
  161. 'signal-round-warning': monitorData[preFan.code.replace(prefix[2], `${prefix[2]}${groupNum}`)] == '1',
  162. 'signal-round-gry': monitorData[preFan.code.replace(prefix[2], `${prefix[2]}${groupNum}`)] != '1',
  163. }"
  164. ></span>
  165. </div>
  166. </div>
  167. </template>
  168. </ventBox1>
  169. </div>
  170. </div>
  171. </div>
  172. </div>
  173. <div ref="playerRef" style="z-index: 9999; position: fixed; top: 180px; right: 15px; height: 100%; pointer-events: none"> </div>
  174. </div>
  175. </div>
  176. </div>
  177. </template>
  178. <script lang="ts" setup name="nitrogenHome">
  179. import { onMounted, onUnmounted, ref, onBeforeUnmount } from 'vue';
  180. import fourBorderBg from '../../../comment/components/fourBorderBg.vue';
  181. import { mountedThree, destroy, setModelType } from '../nitrogen.threejs';
  182. import { list } from '../nitrogen.api';
  183. import ventBox1 from '/@/components/vent/ventBox1.vue';
  184. // 补连塔
  185. import { monitorDataGroupArr, prefix, getMonitorProperty, getSysState, getSysState1 } from '../nitrogen.dataBLT';
  186. import type { State } from '../nitrogen.dataBLT';
  187. import { formatNum } from '/@/utils/ventutil';
  188. import { useCamera } from '/@/hooks/system/useCamera';
  189. const playerRef = ref();
  190. const loading = ref(true);
  191. const monitorDataGroupFlag = ref(0);
  192. const monitorDataGroup = ref<Number[]>([]);
  193. const kyjs = ref<string[]>([]);
  194. const cqgs = ref<string[]>([]);
  195. const monitorData = ref<Object | []>({});
  196. const sysStateList = ref<State[]>([]);
  197. const sysStateList1 = ref<State[]>([]);
  198. let preFanMonitorData, preMonitorList, cqgMonitorList, totalData;
  199. const { getCamera, removeCamera } = useCamera();
  200. /// forcFan_north 北风井 /// forcFan_south 南风井
  201. // https获取监测数据
  202. let timer: null | NodeJS.Timeout = null;
  203. async function getMonitor(flag?) {
  204. if (Object.prototype.toString.call(timer) === '[object Null]') {
  205. new Promise(async (resolve) => {
  206. timer = await setTimeout(
  207. async () => {
  208. await getDataSource();
  209. if (timer) {
  210. timer = null;
  211. }
  212. resolve(null);
  213. await getMonitor(false);
  214. },
  215. flag ? 0 : 1000
  216. );
  217. });
  218. }
  219. }
  220. async function getDataSource() {
  221. const res = await list({ devicetype: 'forcFan', pagetype: 'normal' });
  222. // const res = {
  223. // cmd: 'monitordata',
  224. // msgTxt: [
  225. // {
  226. // datalist: [
  227. // {
  228. // msgType: null,
  229. // deviceID: '1749326253834444802',
  230. // strname: '北风井压风',
  231. // strinstallpos: '北风井压风',
  232. // fsectarea: 'null',
  233. // stationname: '北风井压风',
  234. // stationtype: 'redis',
  235. // deviceType: 'forcFan_north',
  236. // typeName: '压风机北',
  237. // netStatus: 1,
  238. // warnFlag: 0,
  239. // warnLevel: 0,
  240. // warnLevel_str: '正常',
  241. // syswarnLevel: null,
  242. // syswarnLevel_str: null,
  243. // syswarnLevel_des: null,
  244. // warnTime: null,
  245. // readTime: '2024-12-02 18:40:56',
  246. // warnDes: '',
  247. // frontGateOpenCtrl: null,
  248. // rearGateOpenCtrl: null,
  249. // readData: {
  250. // PRE1_CPR_InletPre: '2.00',
  251. // PRE2_CPR_HeadTemp: '13.00',
  252. // PRE1_MOT_PhaseATemp: '56.40',
  253. // PRE2_MOT_PhaseAOverTemp: '0',
  254. // sign: '0',
  255. // PRE1_CPR_UnLoadPre: '6.20',
  256. // PRE1_CPR_LoadorUnload: '0',
  257. // PRE2_CPR_ExhaustTemp: '15.00',
  258. // PRE2_FaultSignal1: '0',
  259. // PRE2_CPR_LoadorUnload: '1',
  260. // PRE2_MOT_PhaseCOverTemp: '0',
  261. // PRE1_MOT_PhaseBOverTemp: '0',
  262. // PRE1_CPR_ExhaustPre: '6.40',
  263. // PRE1_MOT_FrontAxleTemp2: '35.80',
  264. // PRE1_MOT_FrontAxleTemp1: '0.00',
  265. // PRE2_CPR_CoolantTemp: '12.00',
  266. // PRE1_FaultSignal: '0',
  267. // PRE2_FaultSignal: '0',
  268. // PRE2_MOT_FrontAxleTemp: '0.00',
  269. // PRE1_MOT_TotalRunTime: '5477.00',
  270. // PRE1_CPR_LoadTime: '2405.00',
  271. // PRE2_CPR_LoadTime: '4464.00',
  272. // PRE1_CPR_HeadTemp: '86.00',
  273. // PRE1_MOT_PhaseAOverTemp: '0',
  274. // PRE2_MOT_PhaseBTemp: '18.50',
  275. // PRE2_HostorLoc: '0',
  276. // PRE2_MOT_TotalRunTime: '6534.00',
  277. // PRE2_MOT_BackAxleTemp: '0.00',
  278. // PRE2_MOT_RunReturn: '0',
  279. // TotalInPipeFlow: '869.00',
  280. // PRE2_CPR_InletPre: '0.00',
  281. // PRE1_FaultSignal1: '0',
  282. // PRE2_CPR_ExhaustPre: '5.90',
  283. // PRE2_MOT_Current: '0.00',
  284. // PRE1_MOT_BackAxleTemp: '0.00',
  285. // PRE1_MOT_Current: '24.50',
  286. // PRE2_MOT_PhaseATemp: '18.20',
  287. // PRE1_MOT_PhaseCOverTemp: '0',
  288. // PRE2_MOT_PhaseBOverTemp: '0',
  289. // PRE1_HostorLoc: '0',
  290. // PRE1_CPR_LoadPre: '7.00',
  291. // PRE1_CPR_SeparationCylinderPressure: '77.00',
  292. // PRE1_MOT_RunReturn: '1',
  293. // PRE2_MOT_CtrlMode: '1',
  294. // PRE1_MOT_CtrlMode: '0',
  295. // PRE2_CPR_LoadPre: '7.00',
  296. // PRE1_MOT_PhaseCTemp: '32.60',
  297. // TotalOutPipePre: '6.40',
  298. // PRE1_CPR_CoolantTemp: '64.00',
  299. // PRE1_MOT_PhaseBTemp: '59.30',
  300. // PRE2_MOT_PhaseCTemp: '18.20',
  301. // PRE2_CPR_UnLoadPre: '6.20',
  302. // PRE2_CPR_SeparationCylinderPressure: '5.90',
  303. // isRun: '-2',
  304. // PRE1_CPR_ExhaustTemp: '23.20',
  305. // },
  306. // readDataDes: null,
  307. // summaryHour: [],
  308. // summaryDay: [],
  309. // history: [],
  310. // dayhistory: [],
  311. // totalInfo: null,
  312. // sign: null,
  313. // cameras: [
  314. // {
  315. // id: '1854452465886429185',
  316. // addr: 'c70e0a6f7e0947368e4d9acd37bb3bac',
  317. // name: '北压风机房',
  318. // devicekind: 'toHKHLs',
  319. // cameraRate: null,
  320. // },
  321. // {
  322. // id: '1854452718454833154',
  323. // addr: 'dfa82251816845a4a1c7957384bf2443',
  324. // name: '北压风机房变电所',
  325. // devicekind: 'toHKHLs',
  326. // cameraRate: null,
  327. // },
  328. // ],
  329. // links: [],
  330. // other1: null,
  331. // other2: null,
  332. // other3: null,
  333. // remarkInfo: null,
  334. // linkInfo: null,
  335. // addrIndex: null,
  336. // warnLogNotOkCount: 0,
  337. // otherInfo: null,
  338. // },
  339. // {
  340. // msgType: null,
  341. // deviceID: '1749326210754748418',
  342. // strname: '南风井压风',
  343. // strinstallpos: '南风井压风',
  344. // fsectarea: 'null',
  345. // stationname: '南风井压风',
  346. // stationtype: 'redis',
  347. // deviceType: 'forcFan_south',
  348. // typeName: '压风机南',
  349. // netStatus: 1,
  350. // warnFlag: 0,
  351. // warnLevel: 0,
  352. // warnLevel_str: '正常',
  353. // syswarnLevel: null,
  354. // syswarnLevel_str: null,
  355. // syswarnLevel_des: null,
  356. // warnTime: null,
  357. // readTime: '2024-12-02 18:40:56',
  358. // warnDes: '',
  359. // frontGateOpenCtrl: null,
  360. // rearGateOpenCtrl: null,
  361. // readData: {
  362. // PRE1_MOT_FrontAxleOverTempAlam: '0',
  363. // PRE3_MOT_PhaseBTempStop: '0',
  364. // PRE3_CPR_CoolantTemp: '72.00',
  365. // PRE1_MOT_PhaseATemp: '83.40',
  366. // PRE2_MOT_PhaseCTempStop: '0',
  367. // PRE2_MOT_PhaseAOverTemp: '0',
  368. // PRE2_MOT_BackAxleOverTempAlam: '0',
  369. // PRE3_AlarmHistory: '0.00',
  370. // PRE1_MOT_BackAxleOverTempStop: '0',
  371. // PRE2_CPR_LoadorUnload: '1',
  372. // PRE3_MOT_PhaseBTemp: '74.80',
  373. // PRE1_MOT_PhaseBOverTemp: '0',
  374. // PRE1_CPR_ExhaustPre: '5.00',
  375. // PRE3_MOT_RunReturn: '1',
  376. // PRE1_ExitPressure: '26214.00',
  377. // PRE2_ExitPressure: '5130.00',
  378. // PRE1_CPR_LoadTime: '8272.00',
  379. // PRE2_CPR_LoadTime: '424.00',
  380. // PRE1_MOT_PhaseAOverTemp: '0',
  381. // PRE2_MOT_Power: '0.00',
  382. // PRE3_CPR_LoadTime: '244.00',
  383. // PRE2_MOT_PhaseBTempStop: '0',
  384. // PRE1_MOT_PhaseATempStop: '0',
  385. // PRE2_MOT_RunReturn: '1',
  386. // PRE2_AlarmHistory: '3.10',
  387. // PRE1_Status: '8454',
  388. // PRE3_MOT_PhaseATempStop: '0',
  389. // PRE2_CPR_ExhaustPre: '5.10',
  390. // PRE3_CPR_ExhaustTemp: '48.00',
  391. // PRE3_MOT_TotalRunTime: '244.00',
  392. // PRE1_MOT_BackAxleTemp: '0.00',
  393. // PRE3_MOT_PhaseAOverTemp: '0',
  394. // PRE2_MOT_PhaseATemp: '71.20',
  395. // PRE2_MOT_BackAxleOverTempStop: '0',
  396. // PRE3_MOT_FrontAxleOverTempAlam: '0',
  397. // PRE3_MOT_BackAxleOverTempStop: '0',
  398. // PRE1_HostorLoc: '0',
  399. // PRE1_CPR_LoadPre: '6.30',
  400. // PRE1_MOT_RunReturn: '1',
  401. // PRE3_CPR_LoadPre: '6.30',
  402. // PRE1_MOT_CtrlMode: '1',
  403. // PRE2_CPR_LoadPre: '6.30',
  404. // PRE3_MOT_CtrlMode: '1',
  405. // PRE3_CPR_LoadorUnload: '1',
  406. // PRE1_CPR_CoolantTemp: '71.00',
  407. // PRE1_MOT_PhaseBTemp: '83.10',
  408. // PRE2_MOT_FrontAxleOverTempAlam: '0',
  409. // PRE2_MOT_PhaseCTemp: '57.20',
  410. // PRE3_MOT_PhaseCTemp: '73.80',
  411. // PRE2_CPR_HeadTemp: '98.00',
  412. // sign: '0',
  413. // PRE1_CPR_UnLoadPre: '7.00',
  414. // PRE1_CPR_LoadorUnload: '1',
  415. // PRE3_CPR_ExhaustPre: '5.10',
  416. // PRE2_MOT_PhaseATempStop: '0',
  417. // PRE1_MOT_PhaseBTempStop: '0',
  418. // PRE2_CPR_ExhaustTemp: '62.00',
  419. // PRE2_MOT_PhaseCOverTemp: '0',
  420. // PRE3_MOT_PhaseBOverTemp: '0',
  421. // PRE3_FaultSignal: '0',
  422. // PRE3_MOT_Power: '1000.00',
  423. // PRE3_MOT_PhaseATemp: '82.20',
  424. // PRE2_CPR_CoolantTemp: '76.00',
  425. // PRE3_HostorLoc: '0',
  426. // PRE2_FaultSignal: '0',
  427. // PRE1_FaultSignal: '0',
  428. // PRE2_MOT_FrontAxleTemp: '0.00',
  429. // PRE3_MOT_BackAxleTemp: '20.50',
  430. // PRE1_MOT_TotalRunTime: '22.00',
  431. // PRE3_MOT_FrontAxleTemp: '43.10',
  432. // PRE1_CPR_HeadTemp: '92.00',
  433. // PRE1_MOT_PhaseCTempStop: '0',
  434. // PRE3_MOT_BackAxleOverTempAlam: '0',
  435. // PRE2_HostorLoc: '0',
  436. // PRE3_MOT_FrontAxleOverTempStop: '0',
  437. // PRE2_MOT_PhaseBTemp: '64.20',
  438. // PRE3_MOT_PhaseCTempStop: '0',
  439. // PRE3_CPR_HeadTemp: '95.00',
  440. // PRE2_MOT_TotalRunTime: '2802.00',
  441. // PRE1_MOT_BackAxleOverTempAlam: '0',
  442. // PRE2_MOT_BackAxleTemp: '0.00',
  443. // TotalInPipeFlow: '1005.80',
  444. // PRE3_CPR_UnLoadPre: '7.00',
  445. // PRE3_MOT_PhaseCOverTemp: '0',
  446. // PRE1_MOT_PhaseCOverTemp: '0',
  447. // PRE1_MOT_FrontAxleTemp: '0.00',
  448. // PRE2_MOT_PhaseBOverTemp: '0',
  449. // PRE1_MOT_Power: '0.00',
  450. // PRE1_MOT_FrontAxleOverTempStop: '0',
  451. // PRE2_MOT_CtrlMode: '1',
  452. // PRE1_MOT_PhaseCTemp: '82.90',
  453. // TotalOutPipePre: '5.60',
  454. // PRE1_AlarmHistory: '2.00',
  455. // PRE2_MOT_FrontAxleOverTempStop: '0',
  456. // PRE2_CPR_UnLoadPre: '7.00',
  457. // isRun: '-2',
  458. // PRE1_CPR_ExhaustTemp: '56.00',
  459. // },
  460. // readDataDes: null,
  461. // summaryHour: [],
  462. // summaryDay: [],
  463. // history: [],
  464. // dayhistory: [],
  465. // totalInfo: null,
  466. // sign: null,
  467. // cameras: [
  468. // {
  469. // id: '1854452219160690689',
  470. // addr: 'd37096a7d41244a1974bd99b4e2cfe35',
  471. // name: '南压风机房配电室',
  472. // devicekind: 'toHKHLs',
  473. // cameraRate: null,
  474. // },
  475. // {
  476. // id: '1854452329282142210',
  477. // addr: '0f22a6377b084f8bb74435ef9eeff958',
  478. // name: '南压风机',
  479. // devicekind: 'toHKHLs',
  480. // cameraRate: null,
  481. // },
  482. // ],
  483. // links: [],
  484. // other1: null,
  485. // other2: null,
  486. // other3: null,
  487. // remarkInfo: null,
  488. // linkInfo: null,
  489. // addrIndex: null,
  490. // warnLogNotOkCount: 0,
  491. // otherInfo: null,
  492. // },
  493. // ],
  494. // avginfo: {
  495. // warnFlag: {
  496. // value: 0,
  497. // },
  498. // },
  499. // typeName: '压风机',
  500. // type: 'forcFan',
  501. // locallist: [],
  502. // },
  503. // ],
  504. // };
  505. if (res.msgTxt[0] && res.msgTxt[0].datalist && res.msgTxt[0].datalist.length > 0) {
  506. let dataSource;
  507. let dataSourceNorth = res.msgTxt[0].datalist.find((item) => item.deviceType === 'forcFan_north');
  508. let dataSourceSouth = res.msgTxt[0].datalist.find((item) => item.deviceType === 'forcFan_south');
  509. if (monitorDataGroupFlag.value == 1) {
  510. // 北风井
  511. dataSource = dataSourceNorth;
  512. if (dataSource) {
  513. monitorData.value = Object.assign(dataSource, dataSource.readData);
  514. }
  515. } else if (monitorDataGroupFlag.value == 2) {
  516. // 南风井
  517. dataSource = dataSourceSouth;
  518. if (dataSource) {
  519. monitorData.value = Object.assign(dataSource, dataSource.readData);
  520. }
  521. } else {
  522. }
  523. sysStateList.value = getSysState(Object.assign(dataSourceNorth, dataSourceNorth.readData));
  524. sysStateList1.value = getSysState1(Object.assign(dataSourceSouth, dataSourceSouth.readData));
  525. }
  526. loading.value = false;
  527. }
  528. function setMonitorGroupNum(flag) {
  529. monitorDataGroupFlag.value = flag;
  530. const monitorGroup = monitorDataGroupArr[flag - 1];
  531. changeGroup(monitorGroup);
  532. setModelType('compressor' + (flag - 1));
  533. monitorDataGroup.value = monitorGroup;
  534. getMonitorPro(flag);
  535. }
  536. function changeGroup(val) {
  537. kyjs.value = val.map((item) => `${item}号空压机`);
  538. cqgs.value = val.map((item) => `${item}号储气罐`);
  539. monitorData.value = new Array(val.length).fill({
  540. strName: '空压机',
  541. compressGroupName: '',
  542. compressExhaustPressF1: '-',
  543. compressSeparatePressF1: '-',
  544. compressHostTempF1: '-',
  545. compressCrewTempF1: '-',
  546. compressRunTimeF1: '-',
  547. controlModel: 'LOC',
  548. });
  549. }
  550. function getMonitorPro(type) {
  551. const propertyObj = getMonitorProperty(type);
  552. preFanMonitorData = propertyObj.preFanMonitorData;
  553. preMonitorList = propertyObj.preMonitorList;
  554. cqgMonitorList = propertyObj.cqgMonitorList;
  555. totalData = propertyObj.totalData;
  556. }
  557. onMounted(async () => {
  558. mountedThree(monitorDataGroupArr).then(() => {
  559. getMonitor(true).then(async () => {
  560. if (monitorData.value && monitorData.value['deviceID']) await getCamera(monitorData.value['deviceID'], playerRef.value);
  561. monitorDataGroupFlag.value = 1;
  562. setMonitorGroupNum(1);
  563. getMonitorPro(1);
  564. });
  565. });
  566. });
  567. onBeforeUnmount(() => {
  568. removeCamera();
  569. });
  570. onUnmounted(() => {
  571. destroy();
  572. removeCamera();
  573. if (timer) {
  574. clearTimeout(timer);
  575. timer = undefined;
  576. }
  577. });
  578. </script>
  579. <style lang="less" scoped>
  580. @ventSpace: zxm;
  581. .nitrogen-home {
  582. width: 100%;
  583. height: 100%;
  584. display: flex;
  585. justify-content: center;
  586. position: relative;
  587. .total-data {
  588. position: absolute;
  589. color: #e4cd00;
  590. z-index: 9;
  591. top: 50px;
  592. right: 30px;
  593. // display: flex;
  594. font-size: 18px;
  595. .item {
  596. width: 200px;
  597. margin-left: 30px;
  598. .val {
  599. color: #00d8ff;
  600. }
  601. }
  602. }
  603. }
  604. .compressorCss3D-box {
  605. .modal-monitor {
  606. position: absolute;
  607. left: 0px;
  608. top: 0px;
  609. }
  610. &:deep(.win) {
  611. margin: 0 !important;
  612. background: #00000044;
  613. }
  614. &:deep(.main) {
  615. .title {
  616. height: 34px;
  617. text-align: center;
  618. font-weight: 600;
  619. color: #7af5ff;
  620. // background-image: url('../../../assets/img/yfj/light.png');
  621. background-repeat: no-repeat;
  622. background-position-x: center;
  623. background-position-y: 100%;
  624. background-size: 80%;
  625. font-size: 16px;
  626. }
  627. .monitor-item {
  628. display: flex;
  629. flex-direction: row;
  630. width: auto;
  631. margin-bottom: 3px;
  632. .monitor-val {
  633. color: #ffb700;
  634. display: flex;
  635. width: auto;
  636. .val {
  637. width: 80px;
  638. font-size: 14px;
  639. }
  640. .unit {
  641. color: #ffffffbb;
  642. font-size: 14px;
  643. }
  644. }
  645. }
  646. .monitor-title {
  647. width: 100px;
  648. color: #7af5ff;
  649. font-weight: 400;
  650. font-size: 14px;
  651. }
  652. .signal-item {
  653. display: flex;
  654. justify-content: space-between;
  655. // margin-bottom: 5px;
  656. .signal-round {
  657. display: inline-block;
  658. width: 8px;
  659. height: 8px;
  660. border-radius: 50%;
  661. margin: 0 10px;
  662. position: relative;
  663. &::after {
  664. display: block;
  665. content: '';
  666. position: absolute;
  667. width: 12px;
  668. height: 12px;
  669. top: -2px;
  670. left: -2px;
  671. border-radius: 50%;
  672. }
  673. }
  674. .signal-round-gry {
  675. background-color: #858585;
  676. &::after {
  677. background-color: #85858544;
  678. box-shadow: 0 0 1px 1px #85858599;
  679. }
  680. }
  681. .signal-round-run {
  682. background-color: #67fc00;
  683. &::after {
  684. background-color: #67fc0044;
  685. box-shadow: 0 0 1px 1px #c6ff77;
  686. }
  687. }
  688. .signal-round-warning {
  689. background-color: #e9170b;
  690. &::after {
  691. background-color: #e9170b44;
  692. box-shadow: 0 0 1px 1px #e9170b;
  693. }
  694. }
  695. }
  696. }
  697. }
  698. .nitrogen-home {
  699. width: 100%;
  700. height: calc(100% - 100px);
  701. position: fixed;
  702. z-index: 99;
  703. display: flex;
  704. flex-direction: column;
  705. justify-content: center;
  706. align-items: center;
  707. pointer-events: none;
  708. top: 60px;
  709. .nitrogen-container {
  710. width: 100%;
  711. height: calc(100%);
  712. display: flex;
  713. justify-content: space-between;
  714. margin-bottom: 100px;
  715. position: relative;
  716. .device-state {
  717. width: 100%;
  718. position: absolute;
  719. top: 20px;
  720. color: #e90000;
  721. display: flex;
  722. justify-content: center;
  723. font-size: 20px;
  724. }
  725. .top-box {
  726. width: 100%;
  727. padding: 10px;
  728. overflow: hidden;
  729. display: flex;
  730. justify-content: space-between;
  731. .lr-box {
  732. display: flex;
  733. flex-direction: column;
  734. position: relative;
  735. z-index: 9999;
  736. pointer-events: auto;
  737. }
  738. .item {
  739. width: 285px;
  740. height: auto;
  741. position: relative;
  742. border-radius: 5px;
  743. margin-top: 10px;
  744. margin-bottom: 0px;
  745. pointer-events: auto;
  746. color: #fff;
  747. overflow: hidden;
  748. .control-item {
  749. height: auto;
  750. min-height: 35px;
  751. display: flex;
  752. flex-direction: row;
  753. justify-content: space-between;
  754. align-items: center;
  755. padding: 5px;
  756. margin: 0 10px 0 3px;
  757. pointer-events: auto;
  758. background: linear-gradient(to right, #0063cd22, #0063cd04);
  759. margin-bottom: 5px;
  760. border-width: 1px;
  761. border-style: dashed;
  762. border-image: linear-gradient(to right, #008ccd66, #0063cd04) 1 1;
  763. border-radius: 5px;
  764. &:last-child {
  765. margin-bottom: 0;
  766. }
  767. .control-item-l {
  768. display: flex;
  769. align-items: center;
  770. font-size: 14px;
  771. .round {
  772. display: inline-block;
  773. width: 3px;
  774. height: 3px;
  775. padding: 1px;
  776. border-radius: 50%;
  777. background-color: #3df6ff;
  778. margin-right: 5px;
  779. box-shadow: 0 0 1px 1px #64f7ff;
  780. }
  781. }
  782. .control-item-r {
  783. text-align: right;
  784. }
  785. .button-box {
  786. position: relative;
  787. padding: 5px;
  788. border: 1px transparent solid;
  789. background-clip: border-box;
  790. border-radius: 5px;
  791. margin-left: 8px;
  792. }
  793. .a-button {
  794. pointer-events: auto;
  795. }
  796. &::v-deep .a-button--mini {
  797. padding: 6px 10px;
  798. }
  799. &::v-deep .a-button--mini.is-round {
  800. padding: 6px 10px;
  801. }
  802. }
  803. .base-title {
  804. width: calc(100% - 60px);
  805. text-align: center;
  806. color: #00d8ff;
  807. }
  808. .state-item {
  809. width: 100%;
  810. display: flex;
  811. flex-direction: row;
  812. flex-wrap: wrap;
  813. .item-col {
  814. width: 50%;
  815. display: flex;
  816. justify-content: center;
  817. align-items: center;
  818. padding: 5px;
  819. .state-title {
  820. color: #ffffffcc;
  821. flex: 9;
  822. font-size: 14px;
  823. .unit {
  824. // color: #ffffffbb;
  825. }
  826. }
  827. .state-val {
  828. flex: 1;
  829. color: #e4a300;
  830. margin-right: 5px;
  831. text-align: right;
  832. font-size: 14px;
  833. }
  834. }
  835. }
  836. .signal-box {
  837. margin: 5px 0;
  838. display: flex;
  839. align-items: center;
  840. .signal-title {
  841. color: #7af5ff;
  842. margin: 0 5px;
  843. }
  844. &:last-child {
  845. margin-right: 0px;
  846. }
  847. }
  848. .list-item {
  849. padding: 0 10px;
  850. display: flex;
  851. justify-content: space-between;
  852. align-items: center;
  853. .item-data-key {
  854. color: #ffffff99;
  855. }
  856. }
  857. .item-data-box {
  858. color: #fff;
  859. .state-icon {
  860. display: inline-block;
  861. width: 12px;
  862. height: 12px;
  863. border-radius: 12px;
  864. }
  865. .open {
  866. border: 5px solid #133a56;
  867. background: #4ecb73;
  868. }
  869. .close {
  870. border: 5px solid #192961;
  871. background: #6d7898;
  872. }
  873. }
  874. }
  875. .item-l {
  876. width: 335px;
  877. .monitor-box {
  878. // width: 335px;
  879. background-color: #ffffff05;
  880. // margin-left: 2px;
  881. // border-radius: 5px;
  882. // backdrop-filter: blur(10px);
  883. }
  884. }
  885. .right-box {
  886. width: 330px;
  887. .control-group {
  888. display: flex;
  889. // justify-content: space-around;
  890. flex-wrap: wrap;
  891. .control-item {
  892. display: flex;
  893. flex-direction: column;
  894. justify-content: center;
  895. align-items: center;
  896. padding: 0 4px;
  897. .control-item-title {
  898. color: #a6dce9;
  899. position: relative;
  900. top: 5px;
  901. }
  902. .control-item-state {
  903. width: 94px;
  904. height: 47px;
  905. background: url('/@/assets/images/vent/control-switch-bg.png');
  906. display: flex;
  907. justify-content: center;
  908. align-items: center;
  909. color: #fff;
  910. }
  911. .button-box {
  912. position: relative;
  913. padding: 5px;
  914. border: 1px transparent solid;
  915. background-clip: border-box;
  916. border-radius: 5px;
  917. margin-left: 8px;
  918. }
  919. .a-button {
  920. pointer-events: auto;
  921. }
  922. &::v-deep .a-button--mini {
  923. padding: 6px 10px;
  924. }
  925. &::v-deep .a-button--mini.is-round {
  926. padding: 6px 10px;
  927. }
  928. }
  929. }
  930. .control-btn-group {
  931. width: 100%;
  932. display: flex;
  933. flex-direction: row;
  934. justify-content: space-between;
  935. align-items: center;
  936. .control-left-box {
  937. display: flex;
  938. flex-direction: column;
  939. justify-content: center;
  940. align-items: center;
  941. padding: 0 20px;
  942. .btn-box {
  943. width: 100px;
  944. color: #fff;
  945. display: flex;
  946. justify-content: space-between;
  947. span {
  948. display: inline-block;
  949. padding: 2px 8px;
  950. background: #007099;
  951. border-radius: 4px;
  952. border: 1px solid rgb(125, 230, 249);
  953. cursor: pointer;
  954. &:hover {
  955. background: #005574;
  956. }
  957. }
  958. }
  959. .icon-box {
  960. width: 60px;
  961. height: 60px;
  962. border-radius: 30px;
  963. border: 2px solid #00bcdd;
  964. box-shadow: 0 0 20px #ffffff88;
  965. display: flex;
  966. justify-content: center;
  967. align-items: center;
  968. margin-top: 20px;
  969. .icon {
  970. width: 18px;
  971. height: 18px;
  972. border-radius: 9px;
  973. border: 3px solid #d7f9ff;
  974. position: relative;
  975. background: #00bcdd;
  976. &::before {
  977. position: absolute;
  978. content: '';
  979. width: 2px;
  980. height: 12px;
  981. background-color: #00bcdd;
  982. left: 6px;
  983. top: -16px;
  984. }
  985. &::after {
  986. position: absolute;
  987. content: '';
  988. width: 2px;
  989. height: 12px;
  990. left: 6px;
  991. top: 17px;
  992. background-color: #00d9ff;
  993. }
  994. }
  995. }
  996. .remote-icon-box {
  997. transform: rotate(30deg);
  998. animation: iconRotate 1s linear;
  999. }
  1000. .remote-icon-box1 {
  1001. transform: rotate(-30deg);
  1002. animation: iconRotate1 1s linear;
  1003. }
  1004. @keyframes iconRotate {
  1005. from {
  1006. transform: rotate(-30deg);
  1007. }
  1008. to {
  1009. transform: rotate(30deg);
  1010. }
  1011. }
  1012. @keyframes iconRotate1 {
  1013. from {
  1014. transform: rotate(30deg);
  1015. }
  1016. to {
  1017. transform: rotate(-30deg);
  1018. }
  1019. }
  1020. }
  1021. .control-right-box {
  1022. width: 100px;
  1023. color: #fff;
  1024. height: 80px;
  1025. justify-content: space-between;
  1026. align-items: center;
  1027. .btn {
  1028. margin-bottom: 30px;
  1029. }
  1030. }
  1031. }
  1032. }
  1033. .left-right-box {
  1034. height: calc(100%);
  1035. overflow-x: hidden;
  1036. overflow-y: auto;
  1037. pointer-events: auto;
  1038. direction: rtl;
  1039. .lr-container {
  1040. direction: ltr;
  1041. }
  1042. .control-item {
  1043. height: 36px;
  1044. }
  1045. }
  1046. }
  1047. }
  1048. }
  1049. .tab-button-box {
  1050. display: inline-block;
  1051. position: relative;
  1052. padding: 5px;
  1053. // border: 1px transparent solid;
  1054. border-radius: 5px;
  1055. margin-left: 8px;
  1056. margin-right: 8px;
  1057. width: auto;
  1058. // height: 40px;
  1059. // border: 1px solid #65dbea;
  1060. height: 35px !important;
  1061. display: flex;
  1062. align-items: center;
  1063. justify-content: center;
  1064. color: #fff;
  1065. padding: 0 15px 5px 15px;
  1066. cursor: pointer;
  1067. &:hover {
  1068. background: linear-gradient(#2cd1ff55, #1eb0ff55);
  1069. }
  1070. &::before {
  1071. width: calc(100% - 6px);
  1072. height: 27px;
  1073. content: '';
  1074. position: absolute;
  1075. top: 3px;
  1076. right: 0;
  1077. left: 3px;
  1078. bottom: 0;
  1079. z-index: -1;
  1080. border-radius: inherit; /*important*/
  1081. background: linear-gradient(#1fa6cb, #127cb5);
  1082. }
  1083. &::after {
  1084. width: calc(100% + 32px);
  1085. height: 10px;
  1086. content: '';
  1087. position: absolute;
  1088. top: 28px;
  1089. right: 0;
  1090. left: -16px;
  1091. bottom: 0;
  1092. z-index: -1;
  1093. border-radius: inherit; /*important*/
  1094. background: url('/@/assets/images/vent/short-light.png') no-repeat;
  1095. background-position: center;
  1096. background-size: 100%;
  1097. z-index: 999;
  1098. }
  1099. }
  1100. .tab-button-box-active {
  1101. border: 1px solid #66989e !important;
  1102. &:hover {
  1103. background: none !important;
  1104. }
  1105. &::before {
  1106. background: linear-gradient(#1fa6cbcc, #127cb5cc) !important;
  1107. }
  1108. }
  1109. </style>