|
@@ -706,17 +706,17 @@ export default {
|
|
|
wtid: id
|
|
|
}
|
|
|
GetMatrixalarmtype(params).then(res =>{
|
|
|
- if (res && res.data && res.data.data.data.length>0) {
|
|
|
- for(let i =0; i<res.data.data.data.length; i++) {
|
|
|
- let item = res.data.data.data[i]
|
|
|
- for(let k in res.data.data.count) {
|
|
|
+ if (res && res.data && res.data.data.length>0) {
|
|
|
+ for(let i =0; i<res.data.data.length; i++) {
|
|
|
+ let item = res.data.data[i]
|
|
|
+ for(let k in res.data.count) {
|
|
|
if (item.nemCode === k) {
|
|
|
- item.count = res.data.data.count[k]
|
|
|
+ item.count = res.data.count[k]
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- that.warnTypeData.total = res.data.data.count.zs
|
|
|
- that.warnTypeData.typeData = res.data.data.data
|
|
|
+ that.warnTypeData.total = res.data.count.zs
|
|
|
+ that.warnTypeData.typeData = res.data.data
|
|
|
that.warnTypeData.dataColumn1 = that.warnTypeData.typeData.slice(0, 5)
|
|
|
that.warnTypeData.dataColumnOther[0] = that.warnTypeData.typeData.slice(5, 13)
|
|
|
that.warnTypeData.dataColumnOther[1] = that.warnTypeData.typeData.slice(13, 21)
|
|
@@ -735,10 +735,10 @@ export default {
|
|
|
}
|
|
|
GetMatrixalarmtypeTable(params).then(res =>{
|
|
|
if (res && res.data) {
|
|
|
- res.data.data.forEach(it =>{
|
|
|
+ res.data.forEach(it =>{
|
|
|
it.isClose = it.closeTime ? true : it.endts ? true : false
|
|
|
})
|
|
|
- that.warnTypeData.tableData = res.data.data
|
|
|
+ that.warnTypeData.tableData = res.data
|
|
|
}
|
|
|
})
|
|
|
},
|