升级播放器版本、增加监控回放、总氮磷COD弹窗

This commit is contained in:
wgx 2025-12-08 10:45:14 +08:00
parent 91d754e050
commit a0e14c8ff2
1 changed files with 3 additions and 1 deletions

View File

@ -853,7 +853,9 @@ export default {
if (data1[key] instanceof Array) {
data3[key] = []
data1[key].map((itemSub, index) => {
data3[key].push((data2[key][index] - data1[key][index]).toFixed(2))
if (data2[key][index] && data1[key][index]){
data3[key].push((data2[key][index] - data1[key][index]).toFixed(2))
}
})
}
})