mirror of
https://github.com/dataease/dataease.git
synced 2026-06-17 04:51:43 +08:00
fix: 样式优化
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -96,7 +96,7 @@ const init = () => {
|
||||
}
|
||||
|
||||
const toolTip = computed(() => {
|
||||
return props.themes === 'dark' ? 'ndark' : 'dark'
|
||||
return props.themes === 'dark' ? 'light' : 'dark'
|
||||
})
|
||||
|
||||
watch(
|
||||
|
||||
@@ -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'])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user