fix: 修复删除列表数据后 Select 选择框重置问题

This commit is contained in:
Bull-BCLS 2023-09-24 20:11:56 +08:00
parent e947312f24
commit 3288f2d38d
6 changed files with 6 additions and 0 deletions
continew-admin-ui/src/views/system

View File

@ -527,6 +527,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};

View File

@ -502,6 +502,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};

View File

@ -414,6 +414,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};

View File

@ -517,6 +517,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};

View File

@ -726,6 +726,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};

View File

@ -793,6 +793,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};