|
|
@ -18,6 +18,12 @@ |
|
|
|
<span>{{ data.text }}</span> |
|
|
|
</template> |
|
|
|
</Descriptions> |
|
|
|
<h3>烟雾/浸水监测:</h3> |
|
|
|
<Descriptions :list="monitor" :data="devicesData" style="gap: 18px;" column="6"> |
|
|
|
<template v-for="item in devicesList.slice(0, -1)" #[`content-${getSlotKey(item.key)}`]="{ data }"> |
|
|
|
<span>{{ data.text }}</span> |
|
|
|
</template> |
|
|
|
</Descriptions> |
|
|
|
|
|
|
|
</div> |
|
|
|
</template> |
|
|
@ -48,6 +54,7 @@ |
|
|
|
secondLoading: true, |
|
|
|
devicesList: [], |
|
|
|
environment: [], |
|
|
|
monitor:[], |
|
|
|
devicesData: {}, |
|
|
|
activeOption: { |
|
|
|
active: { |
|
|
@ -63,6 +70,7 @@ |
|
|
|
this.devicesList = []; |
|
|
|
let devs = []; |
|
|
|
let envDevs = []; // 用于临时存储环境数据 |
|
|
|
let mon = []; // 用于临时存储烟雾浸水数据 |
|
|
|
// Promise.all([this.getAc('A1'), this.getAc('A2'), this.getAc('A3'), this.getAc('A4'), this.getAc('A5'), this.getAc('A6')]).then(res => { |
|
|
|
|
|
|
|
await request({ |
|
|
@ -111,6 +119,14 @@ |
|
|
|
gridColumn: 3, |
|
|
|
}); |
|
|
|
this.devicesData[item.property] = item.formatValue; |
|
|
|
}else if(item.propertyName === "烟雾报警" || item.propertyName === "烟雾报警阈值"|| |
|
|
|
item.propertyName === "水浸检测"|| item.propertyName === "侵水电压阈值"){ |
|
|
|
mon.push({ |
|
|
|
label: item.propertyName, |
|
|
|
key: item.property, |
|
|
|
gridColumn: 3, |
|
|
|
}); |
|
|
|
this.devicesData[item.property] = item.formatValue; |
|
|
|
} else { |
|
|
|
// 其他数据添加到devicesList集合 |
|
|
|
devs.push({ |
|
|
@ -124,6 +140,7 @@ |
|
|
|
}); |
|
|
|
this.devicesList = devs; |
|
|
|
this.environment = envDevs; // 将环境数据赋值给environment |
|
|
|
this.monitor = mon; // 将监测数据赋值给environment |
|
|
|
}) |
|
|
|
}, |
|
|
|
methods: { |
|
|
|