This commit is contained in:
Theluyuan 2023-06-25 13:51:02 +08:00
parent d1df623a4c
commit c7f91d9c7e
4 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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

File diff suppressed because one or more lines are too long