添加绑定监测点筛选

This commit is contained in:
guanj
2026-01-09 11:20:02 +08:00
parent c1e36440e7
commit 87bc9d9017
2 changed files with 68 additions and 5 deletions

View File

@@ -70,6 +70,8 @@ const initChart = () => {
const value =
item.value === 3.14159 || item.value === 0.14159
? '暂无数据'
: item.value === 0.14158
? 0
: Math.round(item.value * 100) / 100 // 处理特殊值
tips += `<div style=" display: flex;justify-content: space-between;">
<span>${item.marker}
@@ -154,7 +156,6 @@ const initChart = () => {
if (params.seriesName == '暂态触发点') {
emit('triggerPoint', params.data)
} else {
emit('echartClick', params)
}
})