|
|
|
@ -84,7 +84,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display: inline-block;width: 20%;height:100%;color:#fff;text-align: center;position:relative;">
|
|
|
|
|
<img src="../assets/icons/highTemperature.png"
|
|
|
|
|
<img src="../assets/icons/ispresshigh.png"
|
|
|
|
|
style="width: 40px;height: 40px;left: 0px;position: absolute">
|
|
|
|
|
<div style="width: 60%;margin-left: 30%;">
|
|
|
|
|
<div>{{ warningInfo?.ispresshigh }}</div>
|
|
|
|
@ -92,7 +92,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display: inline-block;width: 20%;height:100%;color:#fff;text-align: center;position:relative;">
|
|
|
|
|
<img src="../assets/icons/highTemperature.png"
|
|
|
|
|
<img src="../assets/icons/ispresslower.png"
|
|
|
|
|
style="width: 40px;height: 40px;left: 0px;position: absolute">
|
|
|
|
|
<div style="width: 60%;margin-left: 30%;">
|
|
|
|
|
<div>{{ warningInfo?.ispresslower }}</div>
|
|
|
|
@ -100,7 +100,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display: inline-block;width: 20%;height:100%;color:#fff;text-align: center;position:relative;">
|
|
|
|
|
<img src="../assets/icons/highTemperature.png"
|
|
|
|
|
<img src="../assets/icons/ispowerinvalue.png"
|
|
|
|
|
style="width: 40px;height: 40px;left: 0px;position: absolute">
|
|
|
|
|
<div style="width: 60%;margin-left: 30%;">
|
|
|
|
|
<div>{{ warningInfo?.ispowerinvalue }}</div>
|
|
|
|
@ -117,7 +117,7 @@
|
|
|
|
|
<TransitionGroup class="container" name="fade" tag="div">
|
|
|
|
|
<div v-for="(i,index) in warringList" :key='i' ref="warningRef"
|
|
|
|
|
style="position:relative;color:#fff;height: 120px;">
|
|
|
|
|
<img src="../assets/icons/highTemperature.png"
|
|
|
|
|
<img :src="`${i?.ispresslower === 1 ? 'src/assets/icons/ispresslower.png':''}${i?.ispresshigh === 1 ? 'src/assets/icons/ispresshigh.png':''}${i?.istemperaturehigh === 1 ? 'src/assets/icons/highTemperature.png':''}${i?.ispowerinvalue === 1 ? 'src/assets/icons/ispowerinvalue.png':''}`"
|
|
|
|
|
style="width: 40px;height: 40px;position: absolute;top: 10px;left: 0px">
|
|
|
|
|
<div style="position: absolute;top: 10px;left: 50px;font-size: 16px">
|
|
|
|
|
{{ i?.ispresslower === 1 ? '低压' : '' }}
|
|
|
|
@ -239,7 +239,7 @@ export default {
|
|
|
|
|
// }
|
|
|
|
|
// timeoutF()
|
|
|
|
|
setInterval(() => {
|
|
|
|
|
if (first && this.warringWaitList.length > 0) {
|
|
|
|
|
if (first && this.warringWaitList.length > 0 && (this.warringWaitList.length+this.warringList.length)>listLength) {
|
|
|
|
|
let lastData = this.warringList.splice(0, 1)
|
|
|
|
|
setTimeout(()=>{
|
|
|
|
|
this.warringList.splice(this.warringList.length, 0, lastData[0] || this.warringWaitList.splice(0, 1)[0])
|
|
|
|
@ -615,12 +615,6 @@ export default {
|
|
|
|
|
background-image: url('../assets/images/indexBg.jpg');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-notification {
|
|
|
|
|
height: 100px;
|
|
|
|
|
background-color: #040f39;
|
|
|
|
|
color: #fff
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 30px;
|
|
|
|
|