test table

This commit is contained in:
2023-06-28 16:45:49 +08:00
parent 57b59c5c46
commit e522bb54ce
4 changed files with 7 additions and 7 deletions

View File

@@ -781,14 +781,14 @@ function desc(event: any) {
}
function sx(e: any) {
console.log("筛选事件")
console.log("筛选事件",e)
sxlist.value[e.key] = e.list;
}
watch(sxlist, () => {
console.log("sxlist更新");
});
watch(
[sxlist, () => props.dataSource],
[()=>sxlist, () => props.dataSource],
(old, new1) => {
// tableDataSource
// console.log(JSON.stringify(sxlist.value),JSON.stringify(props.dataSource),old[0] == new1[0],old[1] == new1[1])