|
@@ -37,11 +37,11 @@
|
|
:value="item.value">
|
|
:value="item.value">
|
|
<div>
|
|
<div>
|
|
<span v-if="item.value==1" style="width:45px;height:30px; float: left;background-color:#ffff00"> </span>
|
|
<span v-if="item.value==1" style="width:45px;height:30px; float: left;background-color:#ffff00"> </span>
|
|
- <span v-if="item.value==1" style=" float: right; color: #121010 ; font-size: 18px">{{item.text }}</span>
|
|
|
|
|
|
+ <span v-if="item.value==1" style=" float: right; color: #121010 ; font-size: 16px">{{item.text }}</span>
|
|
<span v-if="item.value==2" style="width:45px;height:30px; float: left;background-color:#ff9900 "></span>
|
|
<span v-if="item.value==2" style="width:45px;height:30px; float: left;background-color:#ff9900 "></span>
|
|
- <span v-if="item.value==2" style=" float: right; color: #121010 ; font-size: 18px">{{item.text}}</span>
|
|
|
|
|
|
+ <span v-if="item.value==2" style=" float: right; color: #121010 ; font-size: 16px">{{item.text}}</span>
|
|
<span v-if="item.value==3" style="width:45px;height:30px; float: left;background-color:#FF4500;"> </span>
|
|
<span v-if="item.value==3" style="width:45px;height:30px; float: left;background-color:#FF4500;"> </span>
|
|
- <span v-if="item.value==3" style=" float: right; color: #121010 ; font-size: 18px">{{item.text }}</span>
|
|
|
|
|
|
+ <span v-if="item.value==3" style=" float: right; color: #121010 ; font-size: 16px">{{item.text }}</span>
|
|
</div>
|
|
</div>
|
|
</el-option>
|
|
</el-option>
|
|
</el-select>
|
|
</el-select>
|
|
@@ -644,13 +644,14 @@
|
|
this.statusOptions = response.data;
|
|
this.statusOptions = response.data;
|
|
});
|
|
});
|
|
//预警等级字典
|
|
//预警等级字典
|
|
- this.getDicts("ALARM_LEVEL").then(response => {
|
|
|
|
|
|
+ this.getDicts("WARNING_SELE").then(response => {
|
|
|
|
|
|
for (let i = 0; i < response.data.length; i++) {
|
|
for (let i = 0; i < response.data.length; i++) {
|
|
let items={
|
|
let items={
|
|
text:'',
|
|
text:'',
|
|
value:''
|
|
value:''
|
|
};
|
|
};
|
|
|
|
+
|
|
items.value = response.data[i].dictValue;
|
|
items.value = response.data[i].dictValue;
|
|
items.text = response.data[i].dictLabel;
|
|
items.text = response.data[i].dictLabel;
|
|
this.filterList.push(items);
|
|
this.filterList.push(items);
|