Compare commits
2 Commits
ebaec6bda1
...
50e730c9ff
Author | SHA1 | Date |
---|---|---|
wuhongjian | 50e730c9ff | |
wuhongjian | 2b00dd9130 |
|
@ -39,7 +39,7 @@
|
|||
fill="#0058e1"
|
||||
></path>
|
||||
</svg>
|
||||
<a-tooltip>
|
||||
<a-tooltip @mouseenter="showToolTip">
|
||||
<template #title>{{ val.title }}</template>
|
||||
<span class="name">
|
||||
{{ val.title }}
|
||||
|
@ -88,7 +88,7 @@
|
|||
fill="#0058e1"
|
||||
></path>
|
||||
</svg>
|
||||
<a-tooltip>
|
||||
<a-tooltip @mouseenter="showToolTip">
|
||||
<template #title>{{ child.title }}</template>
|
||||
<span class="name">
|
||||
{{ child.title }}
|
||||
|
@ -251,6 +251,13 @@
|
|||
})
|
||||
}
|
||||
}
|
||||
const showToolTip = (e) => {
|
||||
console.log('鼠标移入', e, e.target.clientWidth, e.target.scrollWidth)
|
||||
debugger
|
||||
if (e.target.clientWidth < 200) {
|
||||
e.target.style.pointerEvents = 'none' // 阻止鼠标事件
|
||||
}
|
||||
}
|
||||
// 区级特殊处理
|
||||
const generateChildren2 = (val, obj) => {
|
||||
if (val.dataList.length > 0) {
|
||||
|
@ -395,6 +402,7 @@
|
|||
showBottom,
|
||||
showDown,
|
||||
selectId,
|
||||
showToolTip,
|
||||
}
|
||||
},
|
||||
beforeUnmount() {
|
||||
|
@ -511,6 +519,7 @@
|
|||
-webkit-line-clamp: 1;
|
||||
-webkit-box-orient: vertical;
|
||||
word-break: break-all;
|
||||
max-width: 200px;
|
||||
}
|
||||
}
|
||||
.up:hover {
|
||||
|
|
Loading…
Reference in New Issue