修改测试bug 优化页面

This commit is contained in:
guanj
2026-01-04 14:55:31 +08:00
parent cc0f8bc8b6
commit a765cdf9ee
68 changed files with 5396 additions and 3096 deletions

View File

@@ -125,50 +125,52 @@ self.addEventListener('message', function (e) {
let titles = ''
if (boxoList.systemType == 'pms') {
titles =
'变电站名称' +
'变电站名称:' +
boxoList.powerStationName +
' 监测点名称' +
' 监测点名称:' +
boxoList.measurementPointName +
' 发生时刻' +
' 发生时刻:' +
boxoList.startTime +
' 暂降(骤升)幅值' +
' 暂降(骤升)幅值:' +
(boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间' +
'% 持续时间:' +
boxoList.duration +
's'
} else if (boxoList.systemType == 'ZL') {
titles =
' 监测点名称' +
(boxoList.engineeringName == undefined ? '' : ' 项目名称:' + boxoList.engineeringName) +
' 监测点名称:' +
boxoList.equipmentName +
' 发生时刻' +
' 发生时刻:' +
boxoList.startTime +
' 暂降(骤升)幅值' +
' 暂降(骤升)幅值:' +
boxoList.evtParamVVaDepth +
' 持续时间' +
'% 持续时间:' +
boxoList.evtParamTm +
's'
} else if (boxoList.systemType == 'YPT') {
titles =
' 监测点名称' +
(boxoList.engineeringName == undefined ? '' : ' 项目名称:' + boxoList.engineeringName) +
' 监测点名称:' +
boxoList.lineName +
' 发生时刻' +
' 发生时刻:' +
boxoList.startTime +
' 暂降(骤升)幅值' +
' 暂降(骤升)幅值:' +
(boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间' +
'% 持续时间:' +
boxoList.persistTime +
's'
} else {
titles =
'变电站名称' +
'变电站名称:' +
boxoList.subName +
' 监测点名称' +
' 监测点名称:' +
boxoList.lineName +
' 发生时刻' +
' 发生时刻:' +
boxoList.startTime +
' 暂降(骤升)幅值' +
' 暂降(骤升)幅值:' +
(boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间' +
'% 持续时间:' +
boxoList.duration +
's'
}