From 7370a66c91e66ce7d691f6fb108ca236acabb2d5 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 14 May 2024 14:21:22 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=95=B0=E6=8D=AE=E6=BA=90):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8DAPI=E6=95=B0=E6=8D=AE=E6=BA=90=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E9=87=8F=E8=BE=83=E5=A4=A7=E6=97=B6=E9=A1=B5=E9=9D=A2=E5=8F=91?= =?UTF-8?q?=E7=94=9F=E5=8D=A1=E9=A1=BF=E5=AF=BC=E8=87=B4=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E7=9B=B4=E6=8E=A5=E8=B7=B3=E8=BD=AC=E5=88=B0=E5=AE=8C=E6=88=90?= =?UTF-8?q?=EF=BC=8C=E9=9A=8F=E5=90=8E=E6=B2=A1=E6=9C=89=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E6=88=90=E5=8A=9F=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../editor/editor-style/VQueryChartStyle.vue | 31 +++++++++++++++++-- .../views/chart/components/editor/index.vue | 6 +++- .../visualized/data/dataset/form/AddSql.vue | 2 ++ .../datasource/form/ApiHttpRequestDraw.vue | 14 +++++++-- 4 files changed, 47 insertions(+), 6 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/VQueryChartStyle.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/VQueryChartStyle.vue index 4d914de2eb..08dcd0a708 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/VQueryChartStyle.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/VQueryChartStyle.vue @@ -13,6 +13,10 @@ const props = defineProps({ type: Object, required: true }, + commonBackgroundPop: { + type: Object, + required: true + }, themes: { type: String as PropType, default: 'dark' @@ -20,7 +24,7 @@ const props = defineProps({ }) const predefineColors = COLOR_PANEL -const { chart } = toRefs(props) +const { chart, commonBackgroundPop } = toRefs(props)