|
@@ -17,7 +17,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script lang="ts" setup>
|
|
|
-import { ref, reactive, onMounted,onUnmounted } from 'vue';
|
|
|
+import { ref, reactive, onMounted, onUnmounted } from 'vue';
|
|
|
import basicSensor from '../../common/basicSensor.vue';
|
|
|
import { getFireAreaInfo, getZcHfWd, getHeadingFace, getDsWd, getMainTrafficYw } from './firePoint.api'
|
|
|
|
|
@@ -85,9 +85,10 @@ async function getFireAreaInfos() {
|
|
|
async function getZcHfWdList() {
|
|
|
let res = await getZcHfWd()
|
|
|
if (res.length != 0) {
|
|
|
- sensorList.length=0
|
|
|
+ sensorList.length = 0
|
|
|
res.forEach(el => {
|
|
|
- sensorList.push({ name: el.nodePlacement, status: el.detectValue + ' ('+ el.unit + ')', warn: el.warningMsg, times: el.dateTime })
|
|
|
+ let dw = el.unit != 'null' && el.unit != null ? `(${el.unit})` : ''
|
|
|
+ sensorList.push({ name: el.nodePlacement, status: el.detectValue + dw, warn: el.warningMsg, times: el.dateTime })
|
|
|
})
|
|
|
}
|
|
|
}
|
|
@@ -96,9 +97,9 @@ async function getZcHfWdList() {
|
|
|
async function getHeadingFaceList() {
|
|
|
let res = await getHeadingFace()
|
|
|
if (res.length != 0) {
|
|
|
- sensorList1.length=0
|
|
|
+ sensorList1.length = 0
|
|
|
res.forEach(el => {
|
|
|
- sensorList1.push({ name: el.name, nd: el.co || '-' , status: el.wd || '-' , warn: el.warningMsg, times: el.dateTime })
|
|
|
+ sensorList1.push({ name: el.name, nd: el.co || '-', status: el.wd || '-', warn: el.warningMsg, times: el.dateTime })
|
|
|
})
|
|
|
}
|
|
|
}
|
|
@@ -107,9 +108,11 @@ async function getHeadingFaceList() {
|
|
|
async function getMainTrafficYwList() {
|
|
|
let res = await getMainTrafficYw()
|
|
|
if (res.length != 0) {
|
|
|
- sensorList2.length=0
|
|
|
+ sensorList2.length = 0
|
|
|
res.forEach(el => {
|
|
|
- sensorList2.push({ name: el.nodePlacement, status:el.detectValue + ' ('+ el.unit + ')', warn: el.warningMsg, times: el.dateTime })
|
|
|
+ let dw = el.unit != 'null' && el.unit != null ? `(${el.unit})` : ''
|
|
|
+ el.detectValue = el.sensorType == 'M0104' ? '0ppm' : el.sensorType == 'K0007' ? el.detectValue == '0' ? '无烟雾' : el.detectValue == '1' ? '有烟雾' : '-' : '-'
|
|
|
+ sensorList2.push({ name: el.nodePlacement, status: el.detectValue + dw, warn: el.warningMsg, times: el.dateTime })
|
|
|
})
|
|
|
}
|
|
|
}
|
|
@@ -118,9 +121,10 @@ async function getMainTrafficYwList() {
|
|
|
async function getDsWdList() {
|
|
|
let res = await getDsWd()
|
|
|
if (res.length != 0) {
|
|
|
- sensorList3.length=0
|
|
|
+ sensorList3.length = 0
|
|
|
res.forEach(el => {
|
|
|
- sensorList3.push({ name: el.nodePlacement, status: el.detectValue + ' ('+ el.unit + ')', warn: el.warningMsg, times: el.dateTime })
|
|
|
+ let dw = el.unit != 'null' && el.unit != null ? `(${el.unit})` : ''
|
|
|
+ sensorList3.push({ name: el.nodePlacement, status: el.detectValue + dw, warn: el.warningMsg, times: el.dateTime })
|
|
|
})
|
|
|
}
|
|
|
}
|
|
@@ -128,7 +132,7 @@ async function getDsWdList() {
|
|
|
onMounted(() => {
|
|
|
getFireAreaInfos()
|
|
|
getMonitor()
|
|
|
-
|
|
|
+
|
|
|
})
|
|
|
|
|
|
onUnmounted(() => {
|
|
@@ -150,7 +154,7 @@ onUnmounted(() => {
|
|
|
margin: 0 10px;
|
|
|
background: #282828;
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
.fireDis-right-box {
|
|
|
display: flex;
|