diff --git a/src/components/jeecg/JVxeTable/src/components/JVxeReloadEffect.ts b/src/components/jeecg/JVxeTable/src/components/JVxeReloadEffect.ts index 7dd3276..6c74134 100644 --- a/src/components/jeecg/JVxeTable/src/components/JVxeReloadEffect.ts +++ b/src/components/jeecg/JVxeTable/src/components/JVxeReloadEffect.ts @@ -69,6 +69,10 @@ export default defineComponent({ key: layer + effectIdx.value + randomString(6), class: ['j-vxe-reload-effect-span', `layer-${layer}`], style: {}, + // update-begin--author:liaozhiyang---date:20240424---for:【issues/1175】解决vxetable鼠标hover之后title显示不对的问题 + title: vNode, + // update-end--author:liaozhiyang---date:20240424---for:【issues/1175】解决vxetable鼠标hover之后title显示不对的问题 + }; if (layer === 'top') { // 最新渲染的在下面 diff --git a/src/design/index.less b/src/design/index.less index 69a3891..5adc49b 100644 --- a/src/design/index.less +++ b/src/design/index.less @@ -89,3 +89,12 @@ img, video { // box-shadow: none; // } // update-end--author:liaozhiyang---date:20231116---for:【QQYUN-7011】online表单多了一个蓝色的边框 + +// update-begin--author:liaozhiyang---date:20240424---for:【issues/1175】解决vxetable鼠标hover之后title显示不对的问题 +.vxe-cell { + pointer-events: none; + > * { + pointer-events: auto; + } +} +// update-end--author:liaozhiyang---date:20240424---for:【issues/1175】解决vxetable鼠标hover之后title显示不对的问题