Compare commits

..

No commits in common. "c00284da01c1c4151c1084edc7ba1ea932bdeacf" and "9a91bf030d6bbd2be2b0a7fa089445c84fff080c" have entirely different histories.

5 changed files with 4 additions and 5 deletions

View File

@ -1482,7 +1482,7 @@ const _sfc_main = defineComponent({
function sx(e) {
sxlist.value[e.key] = e.list;
}
watch(() => [sxlist, props.dataSource], () => {
watch(sxlist, () => {
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, props.dataSource], () => {
watch(sxlist, () => {
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,props.dataSource],
sxlist,
() => {
// tableDataSource
let list: any = [...props.dataSource];

View File

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

File diff suppressed because one or more lines are too long