From fce298124a5bda953bf2ce941a8350bfadf8b082 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Thu, 3 Jul 2025 15:10:38 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F?= =?UTF-8?q?=E3=80=81=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E5=BA=94=E7=94=A8=E6=A8=A1=E6=9D=BF=E4=B8=8D?= =?UTF-8?q?=E4=BC=9A=E5=B0=86=E7=AD=9B=E9=80=89=E5=99=A8=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E7=9A=84=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B9=9F=E4=B8=80=E8=B5=B7?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E9=97=AE=E9=A2=98=20#16362?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core-frontend/src/components/de-app/AppExportForm.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/components/de-app/AppExportForm.vue b/core/core-frontend/src/components/de-app/AppExportForm.vue index 3ca148e8f2..eec2f1314e 100644 --- a/core/core-frontend/src/components/de-app/AppExportForm.vue +++ b/core/core-frontend/src/components/de-app/AppExportForm.vue @@ -140,7 +140,13 @@ const close = () => { const gatherAppInfo = (viewIds, dsIds, componentDataCheck) => { componentDataCheck.forEach(item => { - if (item.component === 'UserView' && canvasViewInfo.value[item.id]) { + if (item.component === 'VQuery' && item.propValue?.length) { + item.propValue.forEach(filterItem => { + if (filterItem.dataset?.id) { + dsIds.push(filterItem.dataset.id) + } + }) + } else if (item.component === 'UserView' && canvasViewInfo.value[item.id]) { const viewDetails = canvasViewInfo.value[item.id] const { id, tableId } = viewDetails viewIds.push(id)