fix: 样式优化

This commit is contained in:
dataeaseShu
2025-05-29 14:31:04 +08:00
committed by 王嘉豪
parent c3cea61e2d
commit 14bc4c6f48
3 changed files with 4 additions and 4 deletions

View File

@@ -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(() => {
<Icon name="dv-max"><dvMax class="svg-icon"></dvMax></Icon
></el-icon>
<el-divider direction="vertical" class="custom-divider_scale" />
<el-tooltip effect="ndark" :content="t('visualization.locate_tips')" placement="top">
<el-tooltip effect="light" :content="t('visualization.locate_tips')" placement="top">
<el-icon @click="reposition" class="hover-icon-custom" style="margin-right: 12px">
<Icon name="dv-reposition"><dvReposition class="svg-icon"></dvReposition></Icon
></el-icon>

View File

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

View File

@@ -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'])