|
@@ -2,11 +2,11 @@
|
|
<template>
|
|
<template>
|
|
<div class="status-bar" onselectstart="return false">
|
|
<div class="status-bar" onselectstart="return false">
|
|
<el-row>
|
|
<el-row>
|
|
- <el-col :span="18" style="margin-top: 5px">
|
|
|
|
|
|
+ <el-col :span="18" style="margin-top: 8px">
|
|
<span style="color: white; margin-left: 20px">系统时间:</span>
|
|
<span style="color: white; margin-left: 20px">系统时间:</span>
|
|
<span style="color: white">{{ currentTime }}</span>
|
|
<span style="color: white">{{ currentTime }}</span>
|
|
</el-col>
|
|
</el-col>
|
|
- <el-col :span="6" style="margin-top: 5px">
|
|
|
|
|
|
+ <el-col :span="6" style="margin-top: 8px">
|
|
<el-popover
|
|
<el-popover
|
|
placement="top-start"
|
|
placement="top-start"
|
|
:width="521"
|
|
:width="521"
|
|
@@ -282,6 +282,22 @@ export default {
|
|
{ lastUpdateTime: "-", stationName: "-", alertText: "-" },
|
|
{ lastUpdateTime: "-", stationName: "-", alertText: "-" },
|
|
];
|
|
];
|
|
}
|
|
}
|
|
|
|
+ if (this.hiddenDangerData.length <= 0) {
|
|
|
|
+ this.hiddenDangerData = [
|
|
|
|
+ { lastUpdateTime: "-", stationName: "-", alertText: "-" },
|
|
|
|
+ ];
|
|
|
|
+ }
|
|
|
|
+ if (this.defectData.length <= 0) {
|
|
|
|
+ this.defectData = [
|
|
|
|
+ { lastUpdateTime: "-", stationName: "-", alertText: "-" },
|
|
|
|
+ ];
|
|
|
|
+ }
|
|
|
|
+ if (this.malfunctionData.length <= 0) {
|
|
|
|
+ this.malfunctionData = [
|
|
|
|
+ { lastUpdateTime: "-", stationName: "-", alertText: "-" },
|
|
|
|
+ ];
|
|
|
|
+ }
|
|
|
|
+
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|