✨(component): update
This commit is contained in:
parent
97f2231ca9
commit
4e6a77ee19
@ -280,7 +280,10 @@ const getFixedColumn = () => {
|
||||
hasr.value = true;
|
||||
} else {
|
||||
// @ts-ignore
|
||||
if (tableBody.value?.scrollLeft + tableBody.value?.offsetWidth + 2 > tableBody.value?.scrollWidth) {
|
||||
if (
|
||||
tableBody.value?.scrollLeft + tableBody.value?.offsetWidth + 2 >
|
||||
tableBody.value?.scrollWidth
|
||||
) {
|
||||
hasl.value = true;
|
||||
hasr.value = false;
|
||||
} else {
|
||||
|
@ -98,7 +98,8 @@ watch(
|
||||
}
|
||||
);
|
||||
watch(
|
||||
tree, () => {
|
||||
tree,
|
||||
() => {
|
||||
if (initStatus.value) {
|
||||
const { checkedKeys } = tree.value.getKeys();
|
||||
unWatch.value = true;
|
||||
@ -107,14 +108,15 @@ watch(
|
||||
unWatch.value = false;
|
||||
}, 0);
|
||||
}
|
||||
}, { deep: true }
|
||||
},
|
||||
{ deep: true }
|
||||
);
|
||||
|
||||
onMounted(() => {
|
||||
nextTick(() => {
|
||||
initStatus.value = true;
|
||||
})
|
||||
})
|
||||
});
|
||||
});
|
||||
|
||||
function handleClick(node: TreeData) {
|
||||
const originNode = tree.value.getOriginData(node.id);
|
||||
|
Loading…
Reference in New Issue
Block a user