From b5a269e9c9c2739fc4b0c582aa4b07f37676b2a0 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Tue, 2 Apr 2024 11:17:33 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E6=8C=87=E6=A0=87=E5=8D=A1=E6=89=B9=E9=87=8F=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE=E6=97=B6=E9=A2=9C=E8=89=B2=E8=AE=BE=E7=BD=AE=E6=97=A0?= =?UTF-8?q?=E6=95=88=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/store/modules/data-visualization/dvMain.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/store/modules/data-visualization/dvMain.ts b/core/core-frontend/src/store/modules/data-visualization/dvMain.ts index da313c67a3..c33136020c 100644 --- a/core/core-frontend/src/store/modules/data-visualization/dvMain.ts +++ b/core/core-frontend/src/store/modules/data-visualization/dvMain.ts @@ -625,7 +625,9 @@ export const dvMainStore = defineStore('dataVisualization', { if (['tablePageMode', 'tablePageSize'].includes(propertyInfo.subProp)) { useEmitt().emitter.emit('calcData-' + viewId, viewInfo) } else { - useEmitt().emitter.emit('renderChart-' + viewId, viewInfo) + setTimeout(() => { + useEmitt().emitter.emit('renderChart-' + viewId, viewInfo) + }, 0) } }) } else {