From f0612c689650f67489ed97d1afa16e4f02db1022 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Wed, 25 Oct 2023 17:48:48 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=83=A8=E5=88=86=E5=AD=98=E9=87=8F?= =?UTF-8?q?=E8=A7=86=E5=9B=BE=E4=B8=8D=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core-frontend/src/views/chart/components/views/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/views/index.vue b/core/core-frontend/src/views/chart/components/views/index.vue index 35e432a735..0c29075911 100644 --- a/core/core-frontend/src/views/chart/components/views/index.vue +++ b/core/core-frontend/src/views/chart/components/views/index.vue @@ -434,7 +434,7 @@ onMounted(() => { } }) useEmitt({ - name: 'calcData-' + view.value.id, + name: 'calc-data-' + view.value.id, callback: function (val) { if (!state.initReady) { return @@ -497,7 +497,8 @@ const loadingFlag = computed(() => { const chartAreaShow = computed(() => { return ( - (view.value.tableId && element.value['state'] === 'ready') || + (view.value.tableId && + (element.value['state'] === undefined || element.value['state'] === 'ready')) || view.value.type === 'rich-text' || (view.value.type === 'map' && view.value.customAttr.map.id) )