test table
This commit is contained in:
@@ -788,11 +788,14 @@ function desc(event: any) {
|
||||
function sx(e: any) {
|
||||
sxlist.value[e.key] = e.list;
|
||||
}
|
||||
watch(sxlist,()=>{
|
||||
console.log("sxlist更新")
|
||||
})
|
||||
watch(
|
||||
[sxlist,()=>props.dataSource],
|
||||
() => {
|
||||
// tableDataSource
|
||||
console.log(JSON.stringify(sxlist.value),JSON.stringify(props.dataSource.value))
|
||||
console.log(JSON.stringify(sxlist.value),JSON.stringify(props.dataSource))
|
||||
let list: any = [...props.dataSource];
|
||||
let endlist: any = [];
|
||||
for (let i in sxlist.value) {
|
||||
|
||||
Reference in New Issue
Block a user