From 574d0d3d59024eb8be2665920898088ff5add64c Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Fri, 19 Jul 2024 10:15:23 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=9F=A5=E8=AF=A2=E7=BB=84):=20=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E7=BB=84=E4=BB=B6=E7=BC=96=E8=BE=91=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E5=90=8E=EF=BC=8C=E5=8F=AA=E5=88=B7=E6=96=B0=E4=BA=86=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E7=BB=84=E4=BB=B6=EF=BC=8C=E6=B2=A1=E6=9C=89=E6=A0=B9?= =?UTF-8?q?=E6=8D=AE=E6=9F=A5=E8=AF=A2=E7=BB=84=E4=BB=B6=E7=9A=84=E9=80=89?= =?UTF-8?q?=E9=A1=B9=E5=80=BC=EF=BC=8C=E9=87=8D=E6=96=B0=E8=A7=A6=E5=8F=91?= =?UTF-8?q?=E4=B8=80=E6=AC=A1=E5=9B=BE=E8=A1=A8=E6=95=B0=E6=8D=AE=E8=AF=B7?= =?UTF-8?q?=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core-frontend/src/custom-component/v-query/Component.vue | 1 + .../custom-component/v-query/QueryConditionConfiguration.vue | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/custom-component/v-query/Component.vue b/core/core-frontend/src/custom-component/v-query/Component.vue index 4c60c55fce..e805fc5dfb 100644 --- a/core/core-frontend/src/custom-component/v-query/Component.vue +++ b/core/core-frontend/src/custom-component/v-query/Component.vue @@ -619,6 +619,7 @@ const autoStyle = computed(() => { diff --git a/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue b/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue index 83b1e42c1b..2a9f4c0263 100644 --- a/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue +++ b/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue @@ -777,7 +777,7 @@ const handleBeforeClose = () => { handleDialogClick() dialogVisible.value = false } - +const emits = defineEmits(['queryData']) const confirmClick = () => { if (validate()) return inputCom.value?.mult?.handleClickOutside?.() @@ -796,6 +796,9 @@ const confirmClick = () => { queryElement.value.cascade = cloneDeep(cascadeArr) cascadeArr = [] snapshotStore.recordSnapshotCache() + nextTick(() => { + emits('queryData') + }) } const cancelValueSource = () => {