From cf6082a2e25f7f530bde795469a55fd454835f5f Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Thu, 4 Jul 2024 13:17:32 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF=E3=80=81?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=A4=96=E9=83=A8=E5=8F=82=E6=95=B0=E8=B7=B3=E8=BD=AC=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE=E4=BF=9D=E5=AD=98=E5=90=8E=EF=BC=8C=E4=BB=AA=E8=A1=A8?= =?UTF-8?q?=E6=9D=BF=E4=BF=9D=E5=AD=98=E6=8C=89=E9=92=AE=E6=9C=AA=E5=A4=84?= =?UTF-8?q?=E4=BA=8E=E6=BF=80=E6=B4=BB=E7=8A=B6=E6=80=81=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/visualization/OuterParamsSet.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/core-frontend/src/components/visualization/OuterParamsSet.vue b/core/core-frontend/src/components/visualization/OuterParamsSet.vue index 717fb98f2f..40e6034441 100644 --- a/core/core-frontend/src/components/visualization/OuterParamsSet.vue +++ b/core/core-frontend/src/components/visualization/OuterParamsSet.vue @@ -187,11 +187,13 @@ import checkArrayRepeat from '@/utils/check' import HandleMore from '@/components/handle-more/src/HandleMore.vue' import { fieldType } from '@/utils/attr' import EmptyBackground from '@/components/empty-background/src/EmptyBackground.vue' +import { snapshotStoreWithOut } from '@/store/modules/data-visualization/snapshot' const dvMainStore = dvMainStoreWithOut() const { dvInfo, componentData } = storeToRefs(dvMainStore) const outerParamsInfoTree = ref(null) const { t } = useI18n() const curEditDataId = ref(null) +const snapshotStore = snapshotStoreWithOut() const state = reactive({ loading: false, @@ -319,6 +321,7 @@ const save = () => { type: 'success', showClose: true }) + snapshotStore.recordSnapshotCache('renderChart') cancel() }) }