From c132025e0b4e3aa3ae74190ee3f0381b43a111fa Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Sat, 8 Feb 2025 14:42:53 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=B5=8C=E5=85=A5=E5=BC=8F):=20=E4=BB=AA?= =?UTF-8?q?=E8=A1=A8=E6=9D=BF=E5=92=8C=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E5=99=A8=E5=9C=A8=20DIV=20=E5=B5=8C=E5=85=A5?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=E4=B8=8B=E6=94=AF=E6=8C=81=E5=AE=BD=E9=AB=98?= =?UTF-8?q?=E8=87=AA=E9=80=82=E5=BA=94=20#14869?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/chart/components/editor/index.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/views/chart/components/editor/index.vue b/core/core-frontend/src/views/chart/components/editor/index.vue index 96cf313232..3c6f3f0b48 100644 --- a/core/core-frontend/src/views/chart/components/editor/index.vue +++ b/core/core-frontend/src/views/chart/components/editor/index.vue @@ -1608,6 +1608,12 @@ const saveValueFormatter = () => { closeValueFormatter() } +const elRowStyle = computed(() => { + return { + height: embeddedStore.getToken ? 'calc(100% - 45px)' : 'calc(100vh - 110px)' + } +}) + const addCalcField = groupType => { editCalcField.value = true isCalcFieldAdd.value = true @@ -2038,7 +2044,7 @@ const deleteChartFieldItem = id => { - +