test table
This commit is contained in:
parent
57b59c5c46
commit
e522bb54ce
@ -1479,13 +1479,13 @@ const _sfc_main = defineComponent({
|
||||
sortTable(event, selcolumn.value.key, "desc", true);
|
||||
}
|
||||
function sx(e) {
|
||||
console.log("\u7B5B\u9009\u4E8B\u4EF6");
|
||||
console.log("\u7B5B\u9009\u4E8B\u4EF6", e);
|
||||
sxlist.value[e.key] = e.list;
|
||||
}
|
||||
watch(sxlist, () => {
|
||||
console.log("sxlist\u66F4\u65B0");
|
||||
});
|
||||
watch([sxlist, () => props.dataSource], (old, new1) => {
|
||||
watch([() => sxlist, () => props.dataSource], (old, new1) => {
|
||||
if (sxlist.value.length == 0) {
|
||||
return;
|
||||
}
|
||||
|
@ -19926,13 +19926,13 @@ const _sfc_main$D = defineComponent({
|
||||
sortTable(event, selcolumn.value.key, "desc", true);
|
||||
}
|
||||
function sx(e) {
|
||||
console.log("\u7B5B\u9009\u4E8B\u4EF6");
|
||||
console.log("\u7B5B\u9009\u4E8B\u4EF6", e);
|
||||
sxlist.value[e.key] = e.list;
|
||||
}
|
||||
watch(sxlist, () => {
|
||||
console.log("sxlist\u66F4\u65B0");
|
||||
});
|
||||
watch([sxlist, () => props.dataSource], (old, new1) => {
|
||||
watch([() => sxlist, () => props.dataSource], (old, new1) => {
|
||||
if (sxlist.value.length == 0) {
|
||||
return;
|
||||
}
|
||||
|
@ -781,14 +781,14 @@ function desc(event: any) {
|
||||
}
|
||||
|
||||
function sx(e: any) {
|
||||
console.log("筛选事件")
|
||||
console.log("筛选事件",e)
|
||||
sxlist.value[e.key] = e.list;
|
||||
}
|
||||
watch(sxlist, () => {
|
||||
console.log("sxlist更新");
|
||||
});
|
||||
watch(
|
||||
[sxlist, () => props.dataSource],
|
||||
[()=>sxlist, () => props.dataSource],
|
||||
(old, new1) => {
|
||||
// tableDataSource
|
||||
// console.log(JSON.stringify(sxlist.value),JSON.stringify(props.dataSource),old[0] == new1[0],old[1] == new1[1])
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user