Skip to content

Commit

Permalink
Merge pull request #21 from Bull-BCLS/dev
Browse files Browse the repository at this point in the history
fix: 修复删除列表数据后 Select 选择框重置问题
  • Loading branch information
Charles7c authored Sep 24, 2023
2 parents e947312 + 3288f2d commit 4ef741a
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 4ef741a

Please sign in to comment.