balancePressHome.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. <template>
  2. <a-spin tip="Loading..." :spinning="loading">
  3. <div class="monitor-container">
  4. <div class="lr left-box">
  5. <div class="monitor-info item-box">
  6. <ventBox1>
  7. <template #title>
  8. <div>均压与低氧参数监测与设置</div>
  9. </template>
  10. <template #container>
  11. <div class="vent-flex-row-between auto-control">
  12. <div class="title">自动调节:</div>
  13. <a-radio-group v-model:value="isAutoControl" name="radioGroup" @change="changeType(isAutoControl)">
  14. <a-radio value="1">关闭</a-radio>
  15. <a-radio value="2">开启</a-radio>
  16. </a-radio-group>
  17. </div>
  18. <div class="input-box">
  19. <div class="divider-line">开始条件</div>
  20. <div v-for="(item, index) in settingParam1" class="input-item" :key="index">
  21. <div class="title">{{ item.title }}:</div>
  22. <a-input-number class="input-value" v-model="item.value" placeholder="" />
  23. <div class="unit">{{ item.unit }}</div>
  24. </div>
  25. <div class="divider-line">调节参数</div>
  26. <div v-for="(item, index) in settingParam2" class="input-item" :key="index">
  27. <div class="title">{{ item.title }}:</div>
  28. <a-input-number class="input-value" v-model="item.value" placeholder="" />
  29. <div class="unit">{{ item.unit }}</div>
  30. </div>
  31. <div class="divider-line">结束时间</div>
  32. <div v-for="(item, index) in settingParam3" class="input-item" :key="index">
  33. <div class="title">{{ item.title }}:</div>
  34. <a-input-number class="input-value" v-model="item.value" placeholder="" />
  35. <div class="unit">{{ item.unit }}</div>
  36. </div>
  37. </div>
  38. <div class="btn-box" style="text-align: center">
  39. <div class="btn btn1" @click="onSubmit">提交</div>
  40. </div>
  41. </template>
  42. </ventBox1>
  43. </div>
  44. </div>
  45. <div class="lr right-box">
  46. <div class="item-box sensor-container">
  47. <ventBox1>
  48. <template #title>
  49. <div>CO与O2监测</div>
  50. </template>
  51. <template #container>
  52. <template v-for="monitor in safetyMonitorData" :key="monitor.deviceId">
  53. <div class="parameter-title group-parameter-title"
  54. ><SvgIcon class="icon" size="14" name="fiber-title" />
  55. <span>{{ monitor.strinstallpos }}</span>
  56. </div>
  57. <div class="input-box">
  58. <div v-for="(item, index) in monitorParam" class="input-item" :key="index">
  59. <div class="title">{{ item.title }}</div>
  60. <div class="value" style="width: 50%">{{ get(monitor, item.code, '-') }}</div>
  61. </div>
  62. </div>
  63. </template>
  64. </template>
  65. </ventBox1>
  66. <ventBox1 class="vent-margin-t-10">
  67. <template #title>
  68. <div>设备监测详情</div>
  69. </template>
  70. <template #container>
  71. <template v-for="monitor in windowMonitorData" :key="monitor.deviceId">
  72. <div class="parameter-title group-parameter-title"
  73. ><SvgIcon class="icon" size="14" name="fiber-title" />
  74. <span>风窗:{{ monitor.strinstallpos }}</span>
  75. </div>
  76. <div class="input-box">
  77. <div v-for="(item, index) in windowParam" class="input-item" :key="index">
  78. <div class="title">{{ item.title }}</div>
  79. <div class="value">{{ get(monitor, item.code, '-') }}</div>
  80. <div class="unit">{{ item.unit }}</div>
  81. </div>
  82. </div>
  83. </template>
  84. <template v-for="monitor in fanlocalMonitorData" :key="monitor.deviceId">
  85. <div class="parameter-title group-parameter-title"
  86. ><SvgIcon class="icon" size="14" name="fiber-title" />
  87. <span>局扇:{{ monitor.strinstallpos }}</span>
  88. </div>
  89. <div class="input-box">
  90. <div v-for="(item, index) in localFanParam" class="input-item" :key="index">
  91. <div class="title">{{ item.title }}</div>
  92. <div class="value">{{ get(monitor, item.code, '-') }}</div>
  93. <div class="unit">{{ item.unit }}</div>
  94. </div>
  95. </div>
  96. </template>
  97. </template>
  98. </ventBox1>
  99. </div>
  100. </div>
  101. </div>
  102. </a-spin>
  103. </template>
  104. <script setup lang="ts">
  105. import { onBeforeMount, ref, onMounted, onUnmounted, reactive, defineProps, watch } from 'vue';
  106. import ventBox1 from '/@/components/vent/ventBox1.vue';
  107. import { SvgIcon } from '/@/components/Icon';
  108. import { mountedThree, destroy, setModelType, updateText, play } from '../balancePress.threejs';
  109. import { settingParam1, settingParam2, settingParam3, windowParam, localFanParam, monitorParam, o2Param } from '../balancePress.data';
  110. import { list } from '../balancePress.api';
  111. import { message } from 'ant-design-vue';
  112. import { get } from 'lodash-es';
  113. const props = defineProps({
  114. deviceId: {
  115. type: String,
  116. require: true,
  117. },
  118. });
  119. const loading = ref(false);
  120. // 默认初始是第一行
  121. const isAutoControl = ref('1');
  122. // 监测数据
  123. const selectData = reactive({
  124. frontRearDP: '-',
  125. sourcePressure: '-',
  126. fault: '-',
  127. });
  128. const changeType = (isAutoControl) => {
  129. isAutoControl;
  130. //
  131. };
  132. // https获取监测数据
  133. let timer: any = null;
  134. function getMonitor(flag?) {
  135. if (Object.prototype.toString.call(timer) === '[object Null]') {
  136. timer = setTimeout(
  137. async () => {
  138. if (props.deviceId) {
  139. const data = await getDataSource(props.deviceId);
  140. Object.assign(selectData, data);
  141. updateText(selectData);
  142. }
  143. if (timer) {
  144. timer = null;
  145. }
  146. await getMonitor();
  147. loading.value = false;
  148. },
  149. flag ? 0 : 1000
  150. );
  151. }
  152. }
  153. const safetyMonitorData = ref<any[]>([]);
  154. const fanlocalMonitorData = ref<any[]>([]);
  155. const windowMonitorData = ref<any[]>([]);
  156. async function getDataSource(systemID) {
  157. const res = await list({ devicetype: 'sys', systemID });
  158. const result = res.msgTxt;
  159. result.forEach((item) => {
  160. if (item.type.startsWith('safetymonitor')) {
  161. safetyMonitorData.value = item.datalist;
  162. }
  163. if (item.type.startsWith('fanlocal')) {
  164. item.datalist.forEach((e) => {
  165. const f1Run = e.readData.Fan1StartStatus == '1';
  166. e.FanfHz = f1Run ? e.readData.Fan1_Frequency : e.readData.Fan2_Frequency;
  167. e.FanRun = f1Run ? '1#风机' : '2#风机';
  168. });
  169. fanlocalMonitorData.value = item.datalist;
  170. }
  171. if (item.type.startsWith('window')) {
  172. windowMonitorData.value = item.datalist;
  173. }
  174. });
  175. }
  176. // 喷粉操作
  177. function onSubmit() {
  178. message.success('提交成功');
  179. }
  180. watch(
  181. () => props.deviceId,
  182. (newVal, oldVal) => {
  183. if (newVal && oldVal != undefined) {
  184. setModelType('balancePressBase');
  185. }
  186. loading.value = true;
  187. }
  188. );
  189. onBeforeMount(() => {});
  190. onMounted(() => {
  191. // getMonitor()
  192. loading.value = true;
  193. mountedThree().then(async () => {
  194. await setModelType('balancePressBase');
  195. loading.value = false;
  196. timer = null;
  197. await getMonitor(true);
  198. play('startSmoke', 'top', 30, 'open', 0);
  199. });
  200. });
  201. onUnmounted(() => {
  202. destroy();
  203. if (timer) {
  204. clearTimeout(timer);
  205. }
  206. });
  207. </script>
  208. <style lang="less" scoped>
  209. @import '/@/design/vent/modal.less';
  210. @import '../../comment/less/workFace.less';
  211. @ventSpace: zxm;
  212. .monitor-container {
  213. margin-top: 60px;
  214. }
  215. .lr {
  216. width: 340px !important;
  217. }
  218. .auto-control {
  219. padding: 10px 8px;
  220. margin: 0 4px 4px 4px;
  221. border-radius: 4px;
  222. border: 1px solid #ffffff05;
  223. background-image: linear-gradient(to left, #39deff15, #3977e500, #39deff15);
  224. }
  225. .divider-line {
  226. position: relative;
  227. color: aqua;
  228. padding-left: 20px;
  229. font-size: 14px;
  230. &::before {
  231. position: absolute;
  232. content: '';
  233. display: block;
  234. top: 10px;
  235. left: 0;
  236. height: 1px;
  237. width: 15px;
  238. background-color: #ffffff33;
  239. }
  240. &::after {
  241. position: absolute;
  242. content: '';
  243. display: block;
  244. top: 10px;
  245. right: 0;
  246. height: 1px;
  247. width: calc(100% - 85px);
  248. background-color: #ffffff33;
  249. }
  250. }
  251. .input-value {
  252. width: 120px !important;
  253. }
  254. .unit {
  255. text-align: right;
  256. }
  257. .btn-box {
  258. margin: 10px 4px;
  259. .btn1 {
  260. padding: 4px 0;
  261. }
  262. }
  263. :deep(.@{ventSpace}-tabs-tabpane-active) {
  264. overflow: auto;
  265. }
  266. :deep(.@{ventSpace}-input-number) {
  267. border-color: #ffffff88 !important;
  268. }
  269. </style>