|
@@ -31,17 +31,33 @@
|
|
|
</ventBox1>
|
|
|
<ventBox1 class="vent-margin-t-10">
|
|
|
<template #title>
|
|
|
+ <div>采煤机基础信息</div>
|
|
|
+ </template>
|
|
|
+ <template #container>
|
|
|
+ <div v-for="(item, index) in workFaceDustParam" class="input-item" style="padding: 4px 8px; margin: 6px 0" :key="index">
|
|
|
+ <div class="title" style="width: 120px">{{ item.title }}</div>
|
|
|
+ <template v-if="item.flag == 'sign'">
|
|
|
+ <div class="value" :style="{ color: item.value == 1 ? '#61ddb1' : '#c4fdff' }">{{ item.value == 1 ? '链接' : '断开' }}</div>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <div class="value" style="width: auto">{{ item.value }}{{ item.unit }}</div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </ventBox1>
|
|
|
+ <ventBox1 class="vent-margin-t-10">
|
|
|
+ <template #title>
|
|
|
<div>煤机喷雾参数</div>
|
|
|
</template>
|
|
|
<template #container>
|
|
|
<div v-for="(item, index) in coalMachineDustParam" class="input-item" :key="index">
|
|
|
<div class="title">{{ item.title }}</div>
|
|
|
- <div class="value">-</div>
|
|
|
+ <div class="value">{{ item.value }}</div>
|
|
|
<div class="unit">{{ item.unit }}</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
</ventBox1>
|
|
|
- <ventBox1 class="vent-margin-t-10">
|
|
|
+ <!-- <ventBox1 class="vent-margin-t-10">
|
|
|
<template #title>
|
|
|
<div>皮带转载点监测</div>
|
|
|
</template>
|
|
@@ -52,7 +68,7 @@
|
|
|
<div class="unit">{{ item.unit }}</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
- </ventBox1>
|
|
|
+ </ventBox1> -->
|
|
|
</div>
|
|
|
<div class="lr right-box">
|
|
|
<ventBox1>
|
|
@@ -112,7 +128,7 @@
|
|
|
import ventBox1 from '/@/components/vent/ventBox1.vue';
|
|
|
import { ScrollBoard as DvScrollBoard } from '@kjgl77/datav-vue3';
|
|
|
import { SvgIcon } from '/@/components/Icon';
|
|
|
- import { beltMachineDustParam, dustConfig, coalMachineDustParam } from '../workFace.data';
|
|
|
+ import { beltMachineDustParam, workFaceDustParam, dustConfig, coalMachineDustParam } from '../workFace.data';
|
|
|
|
|
|
const props = defineProps({
|
|
|
deviceId: {
|