fix(数据大屏): 气泡弹窗颜色不正确

This commit is contained in:
dataeaseShu
2026-05-12 15:15:18 +08:00
committed by dataeaseShu
parent f995a39ce6
commit 17d41f1ac7
2 changed files with 2 additions and 2 deletions

View File

@@ -96,7 +96,7 @@ const init = () => {
}
const toolTip = computed(() => {
return props.themes === 'dark' ? 'light' : 'dark'
return props.themes || 'dark'
})
watch(

View File

@@ -35,7 +35,7 @@ const state = reactive({
basicStyleForm: {}
})
const toolTip = computed(() => {
return props.themes === 'dark' ? 'light' : 'dark'
return props.themes || 'dark'
})
const emit = defineEmits(['onChangeFlowMapLineForm', 'onBasicStyleChange'])