This commit is contained in:
仲么了
2023-10-24 09:01:10 +08:00
parent 4cacc4cdb1
commit 60d5cd6b26
5 changed files with 21 additions and 20 deletions

View File

@@ -415,7 +415,11 @@ export default {
element.showKey.forEach((key) => {
data.forEach((item) => {
if (item.statisticalName === key && item.phase === 'avg') {
arr.push(key + ':' + item.statisticalData)
if(key === 'Apf_RmsI_TolOut(A)'){
arr.push( '总输出电流:' + item.statisticalData + 'A')
}else{
arr.push( '电流畸变率:' + item.statisticalData + '%')
}
}
})
})