From 14bc4c6f487c5c70eff9e78c38762ae4e636778b Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Thu, 29 May 2025 14:31:04 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=A0=B7=E5=BC=8F=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/data-visualization/ComponentToolBarV3.vue | 4 ++-- .../custom-component/picture-group/PictureGroupUploadAttr.vue | 2 +- .../editor/editor-style/components/FlowMapLineSelector.vue | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/core-frontend/src/components/data-visualization/ComponentToolBarV3.vue b/core/core-frontend/src/components/data-visualization/ComponentToolBarV3.vue index b2d0bc6bab..cad21649a0 100644 --- a/core/core-frontend/src/components/data-visualization/ComponentToolBarV3.vue +++ b/core/core-frontend/src/components/data-visualization/ComponentToolBarV3.vue @@ -137,7 +137,7 @@ onUnmounted(() => { v-model="scale" :min="10" :max="200" - tooltip-theme="ndark" + tooltip-theme="light" @change="handleScaleChange()" size="small" /> @@ -145,7 +145,7 @@ onUnmounted(() => { - + diff --git a/core/core-frontend/src/custom-component/picture-group/PictureGroupUploadAttr.vue b/core/core-frontend/src/custom-component/picture-group/PictureGroupUploadAttr.vue index 1d59b9e7e4..32b341e7aa 100644 --- a/core/core-frontend/src/custom-component/picture-group/PictureGroupUploadAttr.vue +++ b/core/core-frontend/src/custom-component/picture-group/PictureGroupUploadAttr.vue @@ -96,7 +96,7 @@ const init = () => { } const toolTip = computed(() => { - return props.themes === 'dark' ? 'ndark' : 'dark' + return props.themes === 'dark' ? 'light' : 'dark' }) watch( diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue index 424b87539f..5a405d8221 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue @@ -35,7 +35,7 @@ const state = reactive({ basicStyleForm: {} }) const toolTip = computed(() => { - return props.themes === 'dark' ? 'ndark' : 'dark' + return props.themes === 'dark' ? 'light' : 'dark' }) const emit = defineEmits(['onChangeFlowMapLineForm', 'onBasicStyleChange'])