This commit is contained in:
Theluyuan 2023-06-25 13:25:45 +08:00
parent 9a91bf030d
commit e599f0e50e
5 changed files with 5 additions and 4 deletions

View File

@ -1482,7 +1482,7 @@ const _sfc_main = defineComponent({
function sx(e) {
sxlist.value[e.key] = e.list;
}
watch(sxlist, () => {
watch(() => [sxlist, tableDataSource], () => {
let list = [...props.dataSource];
let endlist = [];
for (let i in sxlist.value) {

View File

@ -19929,7 +19929,7 @@ const _sfc_main$D = defineComponent({
function sx(e) {
sxlist.value[e.key] = e.list;
}
watch(sxlist, () => {
watch(() => [sxlist, tableDataSource], () => {
let list = [...props.dataSource];
let endlist = [];
for (let i in sxlist.value) {

View File

@ -788,7 +788,7 @@ function sx(e: any) {
sxlist.value[e.key] = e.list;
}
watch(
sxlist,
()=>[sxlist,tableDataSource],
() => {
// tableDataSource
let list: any = [...props.dataSource];

View File

@ -169,4 +169,5 @@ function shubiao(event: any) {
selshow.value = false;
}
}
</script>

File diff suppressed because one or more lines are too long