fix(@vben/web-ele): 修复批量删除后 checkedIds 未重置的问题

This commit is contained in:
puhui999
2025-08-09 12:14:19 +08:00
parent ccf9c3fd53
commit 8eae74879b
42 changed files with 885 additions and 505 deletions

View File

@@ -103,6 +103,7 @@ async function onDelete(row: InfraFileConfigApi.FileConfig) {
async function onDeleteBatch() {
await confirm('确定要批量删除该文件配置吗?');
await deleteFileConfigList(checkedIds.value);
checkedIds.value = [];
ElMessage.success($t('ui.actionMessage.deleteSuccess'));
onRefresh();
}