From 0d800669f623d380af772144eadda4d5cc9979c0 Mon Sep 17 00:00:00 2001 From: ulleo Date: Tue, 25 Mar 2025 17:23:47 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=9B=BE=E8=A1=A8):=20=E6=B1=87=E6=80=BB?= =?UTF-8?q?=E8=A1=A8=E6=80=BB=E8=AE=A1=EF=BC=8C=E6=94=AF=E6=8C=81=E5=AF=B9?= =?UTF-8?q?=E6=95=B0=E5=80=BC=E7=B1=BB=E5=AD=97=E6=AE=B5=E8=BF=9B=E8=A1=8C?= =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E6=B1=87=E6=80=BB=20#12878?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 去除多余打印 --- .../editor/editor-style/components/SummarySelector.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/SummarySelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/SummarySelector.vue index e5da5f2e8e..a99c9375d1 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/SummarySelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/SummarySelector.vue @@ -58,9 +58,7 @@ function getAxisList() { } const computedAxis = computed(() => { - const l = getAxisList() - console.log(l) - return l + return getAxisList() }) const summaryTypes = [ { key: 'sum', name: t('chart.sum') },