fix table

This commit is contained in:
Theluyuan 2023-06-28 16:23:15 +08:00
parent 8a9cd750ae
commit 431f5e189d
4 changed files with 10 additions and 4 deletions

View File

@ -1458,7 +1458,7 @@ const _sfc_main = defineComponent({
const soulleft = ref(0);
const selcolumn = ref({});
const soulkey = ref("");
const sxlist = ref({});
const sxlist = ref([]);
function showsoul(event, column, key) {
console.log(event);
soulleft.value = event.pageX;
@ -1516,6 +1516,8 @@ const _sfc_main = defineComponent({
isReload: true
});
}
}, {
deep: true
});
window.addEventListener("click", heddin);
return (_ctx, _cache) => {

View File

@ -19905,7 +19905,7 @@ const _sfc_main$D = defineComponent({
const soulleft = ref(0);
const selcolumn = ref({});
const soulkey = ref("");
const sxlist = ref({});
const sxlist = ref([]);
function showsoul(event, column, key) {
console.log(event);
soulleft.value = event.pageX;
@ -19963,6 +19963,8 @@ const _sfc_main$D = defineComponent({
isReload: true
});
}
}, {
deep: true
});
window.addEventListener("click", heddin);
return (_ctx, _cache) => {

View File

@ -759,7 +759,7 @@ const soultop = ref(0);
const soulleft = ref(0);
const selcolumn = ref<any>({});
const soulkey = ref("");
const sxlist: any = ref({});
const sxlist: any = ref([]);
function showsoul(event: MouseEvent, column: any, key: string) {
console.log(event);
soulleft.value = event.pageX;
@ -822,6 +822,8 @@ watch(
isReload: true
});
}
},{
deep: true
}
);
window.addEventListener("click", heddin);

File diff suppressed because one or more lines are too long