test table

This commit is contained in:
2023-06-28 15:30:16 +08:00
parent 2612c8dfbb
commit e02298f097
4 changed files with 22 additions and 13 deletions

View File

@@ -19930,8 +19930,11 @@ const _sfc_main$D = defineComponent({
function sx(e) {
sxlist.value[e.key] = e.list;
}
watch(sxlist, () => {
console.log("sxlist\u66F4\u65B0");
});
watch([sxlist, () => props.dataSource], () => {
console.log(JSON.stringify(sxlist.value), JSON.stringify(props.dataSource.value));
console.log(JSON.stringify(sxlist.value), JSON.stringify(props.dataSource));
let list = [...props.dataSource];
let endlist = [];
for (let i in sxlist.value) {