From 7f113dd6098a2a68152335af4fb089b5e1393341 Mon Sep 17 00:00:00 2001 From: ulleo Date: Tue, 21 Nov 2023 16:15:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BC=96=E8=BE=91=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E4=B8=8B=EF=BC=8C=E6=96=B0=E6=B7=BB=E5=8A=A0=E5=9B=BE=E8=A1=A8?= =?UTF-8?q?=E5=90=8E=EF=BC=8C=E8=AE=BE=E7=BD=AE=E5=9B=BE=E8=A1=A8=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E8=81=94=E5=8A=A8=E3=80=81=E8=B7=B3=E8=BD=AC=EF=BC=8C?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=E5=8E=9F=E6=9C=89=E5=9B=BE=E8=A1=A8=E7=9A=84?= =?UTF-8?q?=E8=81=94=E5=8A=A8=E3=80=81=E8=B7=B3=E8=BD=AC=E6=A0=87=E8=AF=86?= =?UTF-8?q?=E4=B8=A2=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/chart/components/editor/editor-senior/Senior.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/editor/editor-senior/Senior.vue b/core/core-frontend/src/views/chart/components/editor/editor-senior/Senior.vue index 2a3bf7f9c1..68f8f8b4f1 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-senior/Senior.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-senior/Senior.vue @@ -18,9 +18,8 @@ import { storeToRefs } from 'pinia' import { BASE_VIEW_CONFIG } from '../util/chart' import { cloneDeep, defaultsDeep } from 'lodash-es' const dvMainStore = dvMainStoreWithOut() -const { dvInfo } = storeToRefs(dvMainStore) -const { nowPanelTrackInfo, nowPanelJumpInfo } = storeToRefs(dvMainStore) +const { nowPanelTrackInfo, nowPanelJumpInfo, dvInfo } = storeToRefs(dvMainStore) const { t } = useI18n() const linkJumpRef = ref(null) @@ -154,7 +153,7 @@ const noSenior = computed(() => { const linkJumpActiveChange = () => { // 直接触发刷新 const params = { - sourceDvId: chart.value.sceneId, + sourceDvId: dvInfo.value.id, sourceViewId: chart.value.id, activeStatus: chart.value.jumpActive } @@ -164,7 +163,7 @@ const linkJumpActiveChange = () => { } const linkageActiveChange = () => { const params = { - dvId: chart.value.sceneId, + dvId: dvInfo.value.id, sourceViewId: chart.value.id, activeStatus: chart.value.linkageActive }