优化暂态事件列表

This commit is contained in:
guanj
2026-06-09 19:51:31 +08:00
parent 03d302ded8
commit bda7373133
48 changed files with 1834 additions and 1474 deletions

View File

@@ -259,7 +259,7 @@ self.onmessage = function (e) {
' 发生时刻:' +
boxoList.startTime +
' 暂降幅值:' +
(boxoList.featureAmplitude * 100).toFixed(2) +
Math.floor(boxoList.featureAmplitude * 10000) / 100 +
'%  持续时间:' +
boxoList.duration +
's'
@@ -283,7 +283,7 @@ self.onmessage = function (e) {
' 发生时刻:' +
boxoList.startTime +
' 暂降幅值:' +
(boxoList.featureAmplitude * 100).toFixed(2) +
Math.floor(boxoList.featureAmplitude * 10000) / 100 +
'% 持续时间:' +
boxoList.persistTime +
's'
@@ -296,7 +296,7 @@ self.onmessage = function (e) {
' 发生时刻:' +
boxoList.startTime +
' 暂降幅值:' +
(boxoList.featureAmplitude * 100).toFixed(2) +
Math.floor(boxoList.featureAmplitude * 10000) / 100 +
'% 持续时间:' +
boxoList.duration +
's'