Skip to content

Commit

Permalink
fix: 修复删除列表数据后 Select 选择框重置问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoofff committed Sep 24, 2023
1 parent e947312 commit 3288f2d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions continew-admin-ui/src/views/system/announcement/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};
Expand Down
1 change: 1 addition & 0 deletions continew-admin-ui/src/views/system/dept/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};
Expand Down
1 change: 1 addition & 0 deletions continew-admin-ui/src/views/system/dict/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};
Expand Down
1 change: 1 addition & 0 deletions continew-admin-ui/src/views/system/menu/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};
Expand Down
1 change: 1 addition & 0 deletions continew-admin-ui/src/views/system/role/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};
Expand Down
1 change: 1 addition & 0 deletions continew-admin-ui/src/views/system/user/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -793,6 +793,7 @@
del(ids).then((res) => {
proxy.$message.success(res.msg);
getList();
proxy.$refs.tableRef.selectAll(false);
});
};
Expand Down

0 comments on commit 3288f2d

Please sign in to comment.