|
@@ -178,15 +178,15 @@ export default {
|
|
|
let datas = res.data
|
|
|
let arr = []
|
|
|
datas.forEach(it =>{
|
|
|
- if (it.rank === '5') {
|
|
|
- if (it.stationName.indexOf('风电场') !== -1 ) {
|
|
|
- str = it.stationName.substring(0, it.stationName.indexOf('风电场'))
|
|
|
- } else if (it.stationName.indexOf('光伏电站') !== -1) {
|
|
|
- str = it.stationName.substring(0, it.stationName.indexOf('光伏电站'))
|
|
|
- }
|
|
|
- arr.push(str)
|
|
|
+ if (it.rank === '5' && it.category1 === 'SYZ') {
|
|
|
+ // if (it.stationName.indexOf('风电场') !== -1 ) {
|
|
|
+ // str = it.stationName.substring(0, it.stationName.indexOf('风电场'))
|
|
|
+ // } else if (it.stationName.indexOf('光伏电站') !== -1) {
|
|
|
+ // str = it.stationName.substring(0, it.stationName.indexOf('光伏电站'))
|
|
|
+ // }
|
|
|
+ arr.push(it.category2)
|
|
|
}
|
|
|
- let str = ''
|
|
|
+ // let str = ''
|
|
|
})
|
|
|
this.allWarnData = this.unique(arr)
|
|
|
}
|
|
@@ -204,7 +204,7 @@ export default {
|
|
|
getWarnstyle(item) {
|
|
|
let showWarn = ''
|
|
|
this.allWarnData.forEach(it=> {
|
|
|
- if (it === item.name) {
|
|
|
+ if (it === item.id) {
|
|
|
showWarn = 'warningMaskNew'
|
|
|
}
|
|
|
})
|