From 42b31347cd70ffd326e5c772e386b65b6c277a1c Mon Sep 17 00:00:00 2001 From: songjie Date: Mon, 2 Feb 2026 11:46:06 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=90=E8=97=8F=E2=80=9C=E8=BF=91=E4=B8=83?= =?UTF-8?q?=E6=97=A5=E2=80=9D=E6=B4=BB=E8=B7=83=EF=BC=9B=E5=85=B1=E7=94=A8?= =?UTF-8?q?=E5=90=8C=E4=B8=80=E4=B8=AAy=E8=BD=B4=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/PlatformData/UserActivityStats.vue | 23 ++++++----------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/src/views/PlatformData/UserActivityStats.vue b/src/views/PlatformData/UserActivityStats.vue index a6c532d..82aeb83 100644 --- a/src/views/PlatformData/UserActivityStats.vue +++ b/src/views/PlatformData/UserActivityStats.vue @@ -23,7 +23,7 @@
每日 - 近七日 + 近三十日
@@ -282,25 +282,15 @@ const updateChart = (data) => { boundaryGap: false, data: dates }, - yAxis: [ - { - type: 'value', - min: 0, - position: 'left', - axisLabel: { formatter: '{value}' } - }, - { - type: 'value', - min: 0, - position: 'right', - axisLabel: { formatter: '{value}' } - } - ], + yAxis: { + type: 'value', + min: 0, + axisLabel: { formatter: '{value}' } + }, series: [ { name: 'DeepChart活跃人数', type: 'line', - yAxisIndex: 0, data: activeUsers, itemStyle: { color: '#e74c3c' }, symbol: 'circle', @@ -310,7 +300,6 @@ const updateChart = (data) => { { name: 'DeepChart使用次数', type: 'line', - yAxisIndex: 1, data: useCounts, itemStyle: { color: '#2ecc71' }, symbol: 'circle',