fix: 去除批量删除接口的 ByIds,这种按照约定,是不带的,针对 Id 的情况

This commit is contained in:
puhui999
2025-06-06 15:44:37 +08:00
parent 43841be0d9
commit 2c9032e595
16 changed files with 30 additions and 31 deletions

View File

@@ -12,7 +12,7 @@ import { message } from 'ant-design-vue';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import {
deleteDemo01Contact,
deleteDemo01ContactListByIds,
deleteDemo01ContactList,
exportDemo01Contact,
getDemo01ContactPage,
} from '#/api/infra/demo/demo01';
@@ -65,7 +65,7 @@ async function handleDeleteBatch() {
key: 'action_process_msg',
});
try {
await deleteDemo01ContactListByIds(checkedIds.value);
await deleteDemo01ContactList(checkedIds.value);
message.success($t('ui.actionMessage.deleteSuccess'));
onRefresh();
} finally {