【issues/1175】解决vxetable鼠标hover之后title显示不对的问题 ---

pull/1207/merge
JEECG 2024-04-25 16:28:21 +08:00
parent 404541f956
commit d418e7d3e5
2 changed files with 13 additions and 0 deletions

View File

@ -69,6 +69,10 @@ export default defineComponent({
key: layer + effectIdx.value + randomString(6), key: layer + effectIdx.value + randomString(6),
class: ['j-vxe-reload-effect-span', `layer-${layer}`], class: ['j-vxe-reload-effect-span', `layer-${layer}`],
style: {}, 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') { if (layer === 'top') {
// 最新渲染的在下面 // 最新渲染的在下面

View File

@ -89,3 +89,12 @@ img, video {
// box-shadow: none; // box-shadow: none;
// } // }
// update-end--author:liaozhiyang---date:20231116---for【QQYUN-7011】online表单多了一个蓝色的边框 // 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显示不对的问题