diff --git a/src/component/table/index.vue b/src/component/table/index.vue index 478d387..7fd8aa1 100644 --- a/src/component/table/index.vue +++ b/src/component/table/index.vue @@ -782,13 +782,13 @@ function desc(event: any) { function sx(e: any) { sxlist.value[e.key] = e.list; - console.log("筛选事件",sxlist.value,sxlist.value.length) + console.log("筛选事件", sxlist.value, sxlist.value.length); } 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])