From 204797ce2454de583ae20ad54db1326582247935 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Thu, 28 Nov 2024 15:32:58 +0800 Subject: [PATCH] =?UTF-8?q?=20fix:=20=E3=80=90=E6=95=B0=E6=8D=AE=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E3=80=91-=E5=AF=BC=E5=87=BA=E4=BB=AA=E8=A1=A8?= =?UTF-8?q?=E6=9D=BF=E5=9B=BE=E8=A1=A8=E6=95=B0=E6=8D=AE=EF=BC=8C=E6=8A=A5?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E6=9D=83=E9=99=90=E5=B7=B2=E6=9B=B4=E6=94=B9?= =?UTF-8?q?=EF=BC=8C=E5=AF=BC=E5=87=BA=E6=9C=AA=E6=89=A7=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/visualization/ComponentEditBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-frontend/src/components/visualization/ComponentEditBar.vue b/core/core-frontend/src/components/visualization/ComponentEditBar.vue index 94d15123d5..f9db12888e 100644 --- a/core/core-frontend/src/components/visualization/ComponentEditBar.vue +++ b/core/core-frontend/src/components/visualization/ComponentEditBar.vue @@ -453,7 +453,7 @@ const exportAsExcel = () => { const viewDataInfo = dvMainStore.getViewDataDetails(element.value.id) const chartExtRequest = dvMainStore.getLastViewRequestInfo(element.value.id) const viewInfo = dvMainStore.getViewDetails(element.value.id) - const chart = { ...viewInfo, chartExtRequest, data: viewDataInfo } + const chart = { ...viewInfo, chartExtRequest, data: viewDataInfo, busiFlag: dvInfo.value.type } exportExcelDownload(chart, () => { openMessageLoading(callbackExport) })