From 668d82aa32d16b614ab383026a5f9d3647f32a40 Mon Sep 17 00:00:00 2001 From: kun <1422840143@qq.com> Date: Tue, 21 May 2024 20:22:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20BUG=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../videoDataAnalysis/chartComponents/ChartFour.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/projectFront/videoDataAnalysis/chartComponents/ChartFour.vue b/src/views/projectFront/videoDataAnalysis/chartComponents/ChartFour.vue index bd218728..83972125 100644 --- a/src/views/projectFront/videoDataAnalysis/chartComponents/ChartFour.vue +++ b/src/views/projectFront/videoDataAnalysis/chartComponents/ChartFour.vue @@ -54,8 +54,8 @@ export default { if(arr){ arr.map(item => { xData.push(item.date) - yData1.push(item.onlineRatio + "%") - yData2.push(item.normalRatio + "%") + yData1.push(item.onlineRatio) + yData2.push(item.normalRatio) }) } let ageChart = echarts.init(this.$refs.ChartFour);