From 18784d44555d025c18d622872275fae856e161c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A5=94=E8=B7=91=E7=9A=84=E9=9D=A2=E6=9D=A1?= <1262327911@qq.com> Date: Fri, 16 Dec 2022 13:01:15 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=85=A8=E5=B1=80=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E4=BF=9D=E5=AD=98=E4=B9=8B=E5=90=8E=E8=B0=83=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E5=AD=98=E5=82=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ChartData/components/ChartDataRequest/pondIndex.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/pondIndex.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/pondIndex.vue index 6bc0a000..cdae25a5 100644 --- a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/pondIndex.vue +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/pondIndex.vue @@ -48,6 +48,7 @@ import { useTargetData } from '../../../hooks/useTargetData.hook' import { RequestGlobalConfig } from './components/RequestGlobalConfig' import { RequestTargetConfig } from './components/RequestTargetConfig' import { RequestDataPondItemType } from '@/store/modules/chartEditStore/chartEditStore.d' +import { useSync } from '@/views/chart/hooks/useSync.hook' import { goDialog } from '@/utils' const props = defineProps({ @@ -56,6 +57,7 @@ const props = defineProps({ }) const emit = defineEmits(['update:modelShow', 'editSaveHandle']) +const { dataSyncUpdate } = useSync() const pondName = ref() const inputInstRef = ref() @@ -76,6 +78,7 @@ const closeAndSendHandle = () => { onPositiveCallback: () => { emit('update:modelShow', false) emit('editSaveHandle', props.targetDataRequest) + dataSyncUpdate() } }) }