nitrogenHome.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. <template>
  2. <div id="nitrogenCss3D" class="threejs-Object-CSS"
  3. style="width: 100%; height: 100%; position: absolute; pointer-events: none; overflow: hidden; z-index: 2; top: 0px; left: 0px">
  4. <a-spin :spinning="loading" />
  5. <div v-for="groupNum in monitorDataGroupNum" :key="groupNum" class="modal-monitor">
  6. <fourBorderBg :class="`kyj${groupNum}`" :id="`nitrogenMonitor${groupNum}`">
  7. <div class="title">{{ groupNum }}号制氮机 </div>
  8. <div class="monitor-item">
  9. <span class="monitor-title">注氮压力:</span>
  10. <span class="monitor-val"><span class="val">{{ monitorData[groupNum - 1]['nitrogenPressure'] ?
  11. monitorData[groupNum - 1]['nitrogenPressure'] : '-' }}</span><span class="unit">Mpa</span></span>
  12. </div>
  13. <div class="monitor-item">
  14. <span class="monitor-title">氮气实时流量:</span>
  15. <span class="monitor-val"><span class="val">{{ monitorData[groupNum - 1]['instantaneousFlow'] ?
  16. monitorData[groupNum - 1]['instantaneousFlow'] : '-' }}</span><span class="unit">m³/h</span></span>
  17. </div>
  18. <div class="monitor-item">
  19. <span class="monitor-title">氮气浓度:</span>
  20. <span class="monitor-val"><span class="val">{{ monitorData[groupNum - 1]['nitrogenContent'] ?
  21. monitorData[groupNum - 1]['nitrogenContent'] : '-' }}</span><span class="unit">%</span></span>
  22. </div>
  23. <div class="signal-item">
  24. <div class="signal"><span class="monitor-title">运行信号</span><span
  25. :class="{ 'signal-round': true, 'signal-round-run': monitorData[groupNum - 1]['compressRunSigF1'], 'signal-round-gry': !monitorData[groupNum - 1]['compressRunSigF1'] }"></span>
  26. </div>
  27. <div class="signal"><span class="monitor-title">加载信号</span><span
  28. :class="{ 'signal-round': true, 'signal-round-run': monitorData[groupNum - 1]['compressLoadSigF1'], 'signal-round-gry': !monitorData[groupNum - 1]['compressLoadSigF1'] }"></span>
  29. </div>
  30. </div>
  31. </fourBorderBg>
  32. </div>
  33. </div>
  34. <div id="nitrogen3D" style="width: 100%; height: 100%; position: absolute; overflow: hidden"></div>
  35. <div class="nitrogen-home">
  36. <div class="nitrogen-container">
  37. <div class="top-box">
  38. <!-- 左边监测数据 -->
  39. <div class="lr-box left-box">
  40. <div class="item item-l" v-for="groupNum in monitorDataGroupNum" :key="groupNum">
  41. <ventBox1>
  42. <template #title>
  43. <div>{{ groupNum }}号制氮机组</div>
  44. </template>
  45. <template #container>
  46. <div class="monitor-box">
  47. <div class="parameter-title group-parameter-title"><SvgIcon class="icon" size="38" name="device-group-paramer"/><span>机组参数</span></div>
  48. <div class="state-item" v-for="(data, index) in groupParameterData" :key="index">
  49. <div class="item-col">
  50. <span class="state-title">{{ Object.values(data)[0] }} :</span>
  51. <span class="state-val">{{ (monitorData.length > 0 && monitorData[groupNum - 1][Object.keys(data)[0]])
  52. >= 0 ? monitorData[groupNum - 1][Object.keys(data)[0]] : '-' }}</span>
  53. </div>
  54. <div class="item-col">
  55. <span class="state-title">{{ Object.values(data)[1] }} :</span>
  56. <span class="state-val">{{ (monitorData.length > 0 && monitorData[groupNum - 1][Object.keys(data)[1]])
  57. >= 0 ? monitorData[groupNum - 1][Object.keys(data)[1]] : '-' }}</span>
  58. </div>
  59. </div>
  60. </div>
  61. <div class="monitor-box">
  62. <div class="parameter-title device-parameter-title"><SvgIcon class="icon" size="32" name="device-paramer"/><span>电机数据</span></div>
  63. <div class="state-item" v-for="(data, index) in deviceParameterData" :key="index">
  64. <div class="item-col">
  65. <span class="state-title">{{ Object.values(data)[0] }} :</span>
  66. <span class="state-val">{{ (monitorData.length > 0 && monitorData[groupNum - 1][Object.keys(data)[0]])
  67. >= 0 ? monitorData[groupNum - 1][Object.keys(data)[0]] : '-' }}</span>
  68. </div>
  69. <div class="item-col">
  70. <span class="state-title">{{ Object.values(data)[1] }} :</span>
  71. <span class="state-val">{{ (monitorData.length > 0 && monitorData[groupNum - 1][Object.keys(data)[1]])
  72. >= 0 ? monitorData[groupNum - 1][Object.keys(data)[1]] : '-' }}</span>
  73. </div>
  74. </div>
  75. </div>
  76. </template>
  77. </ventBox1>
  78. </div>
  79. </div>
  80. <!-- 右边控制状态 -->
  81. <div class="lr-box right-box">
  82. <ventBox1>
  83. <template #title>
  84. <div>远程控制</div>
  85. </template>
  86. <template #container>
  87. <div class="control-group">
  88. <div class="control-item" v-for="groupNum in monitorDataGroupNum" :key="groupNum">
  89. <div class="control-item-title">{{ zdjs[groupNum - 1] }}</div>
  90. <div class="control-item-state">
  91. <a-switch v-model="airCompressorState[groupNum - 1][`compressRunSigF1`]" size="small" checked-children="开启"
  92. un-checked-children="关闭" :disabled="airCompressorState[groupNum - 1][`controlModel`]"
  93. @change="handlerDevice(airCompressorState[groupNum - 1])">
  94. </a-switch>
  95. </div>
  96. </div>
  97. <div class="control-item" v-for="groupNum in monitorDataGroupNum" :key="groupNum">
  98. <div class="control-item-title">{{ kyjs[groupNum - 1] }}</div>
  99. <div class="control-item-state">
  100. <a-switch v-model="airCompressorState[groupNum - 1][`compressRunSigF1`]" size="small" checked-children="开启"
  101. un-checked-children="关闭" :disabled="airCompressorState[groupNum - 1][`controlModel`]"
  102. @change="handlerDevice(airCompressorState[groupNum - 1])">
  103. </a-switch>
  104. </div>
  105. </div>
  106. <div class="control-item">
  107. <div class="control-item-title">是否开启联动</div>
  108. <div class="control-item-state">
  109. <a-radio v-model:checked="isLink">开启</a-radio>
  110. </div>
  111. </div>
  112. </div>
  113. </template>
  114. </ventBox1>
  115. </div>
  116. </div>
  117. </div>
  118. </div>
  119. </template>
  120. <script lang="ts" setup name="nitrogenHome">
  121. import { onMounted, onUnmounted, ref, watch } from 'vue'
  122. import ventBox1 from '/@/components/vent/ventBox1.vue'
  123. import fourBorderBg from '../../../comment/components/fourBorderBg.vue'
  124. import { mountedThree, destroy } from '../nitrogen.threejs'
  125. import { list } from '../nitrogen.api'
  126. import { SvgIcon } from '/@/components/Icon'
  127. const loading = ref(true)
  128. const isLink = ref(true)
  129. const zdjs = ['1号制氮机', '2号制氮机', '3号制氮机', '4号制氮机'];
  130. const kyjs = ['1号空压机', '1号空压机', '1号空压机', '1号空压机'];
  131. const monitorDataGroupNum = ref(0);
  132. const airCompressorState = ref([
  133. {
  134. id: '',
  135. compressRunSigF1: false,
  136. controlModel: false
  137. },
  138. {
  139. id: '',
  140. compressRunSigF1: false,
  141. controlModel: false
  142. },
  143. {
  144. id: '',
  145. compressRunSigF1: false,
  146. controlModel: false
  147. },
  148. {
  149. id: '',
  150. compressRunSigF1: false,
  151. controlModel: false
  152. }
  153. ]);
  154. const groupParameterData = [
  155. {
  156. cumulativeFlow: '累计流量(m³)',
  157. centerTemperature: '加热器中心温度',
  158. },
  159. {
  160. outletTemperature: '加热器出口温度',
  161. },
  162. ];
  163. const deviceParameterData = [
  164. {
  165. Ia: 'A项电流(A)',
  166. Ib: 'B项电流(A)',
  167. },
  168. {
  169. Ic: 'c项电流(A)',
  170. Vab: 'AB项间电压(V)',
  171. },
  172. {
  173. Vac: 'AC项间电压(V)',
  174. Vbc: 'BC项间电压(V)',
  175. },
  176. ];
  177. const monitorData = ref(new Array(3).fill({
  178. strName: '空压机',
  179. compressGroupName: '',
  180. compressExhaustPressF1: '-',
  181. compressSeparatePressF1: '-',
  182. compressHostTempF1: '-',
  183. compressCrewTempF1: '-',
  184. compressRunTimeF1: '-',
  185. controlModel: 'LOC'
  186. }));
  187. // https获取监测数据
  188. let timer: null | NodeJS.Timeout = null;
  189. async function getMonitor() {
  190. if (Object.prototype.toString.call(timer) === '[object Null]') {
  191. timer = await setTimeout(async () => {
  192. await getDataSource();
  193. if (timer) {
  194. timer = null;
  195. }
  196. await getMonitor();
  197. }, 1000);
  198. }
  199. };
  200. async function getDataSource() {
  201. const res = await list({ devicetype: 'nitrogen_auto', pagetype: 'normal' });
  202. const dataSource = res.msgTxt[0].datalist || [];
  203. monitorData.value = dataSource.filter((data) => {
  204. const item = data.readData;
  205. Object.assign(data, item);
  206. return item
  207. });
  208. monitorDataGroupNum.value = monitorData.value.length
  209. loading.value = false
  210. };
  211. function handlerDevice(data) {
  212. // if (data.length < 1) return
  213. // handleAirCompressor({ id: data.id, compressRunF1: data.compressRunSigF1 }).then(res => {
  214. // if (res.success) {
  215. // message.success('操作成功')
  216. // } else {
  217. // message.warning(data.msg)
  218. // }
  219. // })
  220. };
  221. function resetDevice(data) {
  222. }
  223. function handlerControlModel(data) {
  224. }
  225. watch(monitorDataGroupNum, (newVal) => {
  226. if (newVal) {
  227. destroy()
  228. mountedThree(newVal)
  229. }
  230. })
  231. onMounted(async () => {
  232. await getMonitor()
  233. })
  234. onUnmounted(() => {
  235. destroy();
  236. if (timer) {
  237. clearTimeout(timer);
  238. timer = undefined;
  239. }
  240. });
  241. </script>
  242. <style lang="less" scoped>
  243. @ventSpace: zxm;
  244. .nitrogen-box {
  245. width: 100%;
  246. height: 100%;
  247. display: flex;
  248. justify-content: center;
  249. }
  250. #nitrogenCss3D {
  251. .modal-monitor {
  252. width: 200px;
  253. position: absolute;
  254. left: 0px;
  255. top: 0px;
  256. }
  257. &:deep(.win) {
  258. margin: 0 !important;
  259. }
  260. }
  261. .nitrogen-home {
  262. width: 100%;
  263. height: 100%;
  264. position: fixed;
  265. z-index: 99;
  266. display: flex;
  267. flex-direction: column;
  268. justify-content: center;
  269. align-items: center;
  270. pointer-events: none;
  271. top: 60px;
  272. .nitrogen-container {
  273. width: 100%;
  274. height: calc(100%);
  275. display: flex;
  276. justify-content: space-between;
  277. margin-bottom: 100px;
  278. .top-box {
  279. width: 100%;
  280. padding: 10px;
  281. overflow: hidden;
  282. display: flex;
  283. justify-content: space-between;
  284. .lr-box {
  285. height: fit-content;
  286. display: flex;
  287. flex-direction: column;
  288. position: relative;
  289. overflow: hidden;
  290. z-index: 9999;
  291. pointer-events: auto;
  292. }
  293. .item {
  294. width: 335px;
  295. height: auto;
  296. position: relative;
  297. border-radius: 5px;
  298. margin-top: 10px;
  299. margin-bottom: 0px;
  300. pointer-events: auto;
  301. color: #fff;
  302. overflow: hidden;
  303. .base-title {
  304. color: #fff;
  305. margin-bottom: 8px;
  306. padding-left: 10px;
  307. position: relative;
  308. font-size: 16px;
  309. &::after{
  310. content: '';
  311. position: absolute;
  312. display: block;
  313. width: 4px;
  314. height: 12px;
  315. top: 7px;
  316. left: 0px;
  317. background: #45d3fd;
  318. border-radius: 4px;
  319. }
  320. }
  321. .state-item {
  322. display: flex;
  323. flex-direction: row;
  324. padding: 5px;
  325. .item-col {
  326. width: calc(50% - 5px);
  327. display: flex;
  328. justify-content: center;
  329. align-items: center;
  330. padding-right: 4px;
  331. background-image: linear-gradient(to right, #39A3FF00, #39A3FF10);
  332. &:first-child{
  333. margin-right: 10px;
  334. }
  335. .state-title {
  336. color: #ffffffcc;
  337. flex: 9;
  338. font-size: 14px;
  339. }
  340. .state-val {
  341. flex: 1;
  342. color: #00eefffe;
  343. margin-right: 5px;
  344. text-align: right;
  345. font-size: 14px;
  346. }
  347. }
  348. }
  349. .signal-box {
  350. margin: 5px 0;
  351. display: flex;
  352. align-items: center;
  353. .signal-title {
  354. color: #7AF5FF;
  355. margin: 0 5px;
  356. }
  357. &:last-child {
  358. margin-right: 0px;
  359. }
  360. }
  361. .list-item {
  362. padding: 0 10px;
  363. display: flex;
  364. justify-content: space-between;
  365. align-items: center;
  366. .item-data-key {
  367. color: #ffffff99;
  368. }
  369. }
  370. .item-data-box {
  371. color: #fff;
  372. .state-icon {
  373. display: inline-block;
  374. width: 12px;
  375. height: 12px;
  376. border-radius: 12px;
  377. }
  378. .open {
  379. border: 5px solid #133a56;
  380. background: #4ecb73;
  381. }
  382. .close {
  383. border: 5px solid #192961;
  384. background: #6d7898;
  385. }
  386. }
  387. }
  388. .item-l {
  389. width: 100%;
  390. .monitor-box {
  391. width: 100%;
  392. .parameter-title{
  393. position: relative;
  394. width: 100%;
  395. height: 14px;
  396. margin-top: 10px;
  397. .icon, span{
  398. position: absolute;
  399. top: -10px;
  400. }
  401. }
  402. .group-parameter-title{
  403. background-image: linear-gradient(to right, #39a3ff50, #39a3ff00);
  404. .icon{
  405. left: -12px;
  406. top: -17px;
  407. }
  408. span{
  409. left: 18px;
  410. }
  411. .item-col{
  412. background-image: linear-gradient(to right, #39A3FF00, #39A3FF10);
  413. }
  414. }
  415. .device-parameter-title{
  416. background-image: linear-gradient(to right, #3df6ff40, #3df6ff00);
  417. .icon{
  418. left: -10px;
  419. top: -14px;
  420. }
  421. span{
  422. left: 18px;
  423. }
  424. .item-col{
  425. background-image: linear-gradient(to right, #3df6ff10, #3df6ff00);
  426. }
  427. }
  428. }
  429. }
  430. .right-box {
  431. .control-group{
  432. display: flex;
  433. // justify-content: space-around;
  434. flex-wrap: wrap;
  435. .control-item {
  436. display: flex;
  437. flex-direction: column;
  438. justify-content: center;
  439. align-items: center;
  440. padding: 0 13px;
  441. .control-item-title{
  442. color: #A6DCE9;
  443. position: relative;
  444. top: 5px;
  445. }
  446. .control-item-state{
  447. width: 94px;
  448. height: 47px;
  449. background: url('/@/assets/images/vent/control-switch-bg.png');
  450. display: flex;
  451. justify-content: center;
  452. align-items: center;
  453. color: #fff;
  454. }
  455. .button-box {
  456. position: relative;
  457. padding: 5px;
  458. border: 1px transparent solid;
  459. background-clip: border-box;
  460. border-radius: 5px;
  461. margin-left: 8px;
  462. }
  463. .a-button {
  464. pointer-events: auto;
  465. }
  466. &::v-deep .a-button--mini {
  467. padding: 6px 10px;
  468. }
  469. &::v-deep .a-button--mini.is-round {
  470. padding: 6px 10px;
  471. }
  472. }
  473. }
  474. }
  475. .left-box {
  476. width: 385px;
  477. }
  478. }
  479. &:deep(.win) {
  480. width: 100%;
  481. margin: 0 !important;
  482. }
  483. }
  484. }
  485. &:deep(.main) {
  486. .title {
  487. height: 34px;
  488. text-align: center;
  489. font-weight: 600;
  490. color: #7AF5FF;
  491. // background-image: url('../../../assets/img/yfj/light.png');
  492. background-repeat: no-repeat;
  493. background-position-x: center;
  494. background-position-y: 100%;
  495. background-size: 80%;
  496. font-size: 16px;
  497. }
  498. .monitor-item {
  499. width: 200px;
  500. display: flex;
  501. flex-direction: row;
  502. width: auto;
  503. margin-bottom: 3px;
  504. .monitor-val {
  505. color: #ffb700;
  506. display: flex;
  507. width: auto;
  508. .val {
  509. width: 80px;
  510. font-size: 14px;
  511. }
  512. .unit {
  513. color: #ffffffbb;
  514. font-size: 14px;
  515. }
  516. }
  517. }
  518. .monitor-title {
  519. width: 100px;
  520. color: #7AF5FF;
  521. font-weight: 400;
  522. font-size: 14px;
  523. }
  524. .signal-item {
  525. display: flex;
  526. justify-content: space-between;
  527. // margin-bottom: 5px;
  528. .signal-round {
  529. display: inline-block;
  530. width: 8px;
  531. height: 8px;
  532. border-radius: 50%;
  533. margin: 0 10px;
  534. position: relative;
  535. &::after {
  536. display: block;
  537. content: '';
  538. position: absolute;
  539. width: 12px;
  540. height: 12px;
  541. top: -2px;
  542. left: -2px;
  543. border-radius: 50%;
  544. }
  545. }
  546. .signal-round-gry {
  547. background-color: #858585;
  548. &::after {
  549. background-color: #85858544;
  550. box-shadow: 0 0 1px 1px #85858599;
  551. }
  552. }
  553. .signal-round-run {
  554. background-color: #67FC00;
  555. &::after {
  556. background-color: #67FC0044;
  557. box-shadow: 0 0 1px 1px #c6ff77;
  558. }
  559. }
  560. .signal-round-warning {
  561. background-color: #E9170B;
  562. &::after {
  563. background-color: #E9170B44;
  564. box-shadow: 0 0 1px 1px #E9170B;
  565. }
  566. }
  567. }
  568. }
  569. :deep(.zxm-radio-wrapper){
  570. color: #fff !important;
  571. }
  572. </style>