From 3a3d75e3b37249fe1c99cc9958ffd1b4806d4736 Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Wed, 15 Apr 2026 17:13:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E5=9B=BE=E6=A0=87?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/userBind/components/CompareLineChart.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/basic/userBind/components/CompareLineChart.vue b/src/views/basic/userBind/components/CompareLineChart.vue index 9af6815..3b4a3bd 100644 --- a/src/views/basic/userBind/components/CompareLineChart.vue +++ b/src/views/basic/userBind/components/CompareLineChart.vue @@ -82,9 +82,9 @@ const setOption = (title, datas, feilds) => { const data = param[0].data.slice(-defaultLength) param.forEach((axis, index) => { if (index === 0) { - tooltipMsg.push(`${axis.axisValueLabel}
${axis.marker}${axis.seriesName}:${data[index]}${props.suffix}`) + tooltipMsg.push(`${axis.axisValueLabel}
${axis.marker}${props.title}:${data[index]}${props.suffix}`) } else { - tooltipMsg.push(`
${axis.marker}${axis.seriesName}:${data[index] === null ? "-" : data[index] + props.suffix}`) + tooltipMsg.push(`
${axis.marker}${props.title}:${data[index] === null ? "-" : data[index] + props.suffix}`) } }) return tooltipMsg.join("")