|
@@ -88,9 +88,9 @@
|
|
|
</div>
|
|
|
<!-- 右下区域 -->
|
|
|
<div class="right-b">
|
|
|
- <DanelBd :moduleName="'变电硐室防灭火监控系统'" :contentStyle="{ contentH: '195px' }" commonTitle="selected"
|
|
|
- :selectList="selectListBd" :selectValue="pointCodeBd" @change-select="changeSelect">
|
|
|
- <substationJc :echartDatas="echartDatas" />
|
|
|
+ <DanelBd :moduleName="'变电硐室防灭火监控系统'" :contentStyle="{ contentH: '195px' }" commonTitle="">
|
|
|
+ <!-- <substationJc :echartDatas="echartDatas" /> -->
|
|
|
+ <outFireJc :outFireData="substationData" />
|
|
|
</DanelBd>
|
|
|
</div>
|
|
|
<!-- 右底部区域 -->
|
|
@@ -171,6 +171,8 @@ let echartDatas = reactive({
|
|
|
yData: [],
|
|
|
yData1: [],
|
|
|
});
|
|
|
+let substationData=reactive<any[]>([])
|
|
|
+
|
|
|
|
|
|
//安全监控
|
|
|
let selectListAq = reactive<any[]>([
|
|
@@ -187,7 +189,7 @@ function getScalc() {
|
|
|
toggleOpen.value = !toggleOpen.value
|
|
|
|
|
|
}
|
|
|
-function getScalc1(){
|
|
|
+function getScalc1() {
|
|
|
isShow.value = !isShow.value;
|
|
|
}
|
|
|
|
|
@@ -341,6 +343,7 @@ async function getFireAreaInfoListDs() {
|
|
|
if (res.length != 0) {
|
|
|
selectListDs.length = 0;
|
|
|
outFireData.length = 0;
|
|
|
+ substationData.length=0
|
|
|
let dataDs = res.filter((m) => m.areaType == 4);
|
|
|
dataDs.forEach((el) => {
|
|
|
selectListDs.push({ label: el.areaName, value: el.areaName });
|
|
@@ -360,6 +363,19 @@ async function getFireAreaInfoListDs() {
|
|
|
{ title: '火焰预警', val: '--', dw: '', label: '状态' },
|
|
|
{ title: '喷粉阀门', val: '--', dw: '', label: '开关量' },
|
|
|
);
|
|
|
+ substationData.push(
|
|
|
+ { title: '光纤预警', val: dataName.infoTypeTwo.maxTemperature, dw: '℃', label: '最高温度' },
|
|
|
+ {
|
|
|
+ title: '一氧化碳预警',
|
|
|
+ val: dataName.infoTypeTwo.returnAirCornerCO,
|
|
|
+ dw: 'ppm',
|
|
|
+ label: '最高浓度',
|
|
|
+ },
|
|
|
+ { title: '烟雾预警', val: 10, dw: '', label: '状态' },
|
|
|
+ { title: '火焰预警', val: 10, dw: '', label: '状态' },
|
|
|
+ { title: '电磁阀', val: 10, dw: '', label: '开关量' },
|
|
|
+ )
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|