feat(20240827_BatchDelete): 增加批量删除

1. 增加表格多选
2. 运行跨页多选
3. 显示多选数据
4. 移除多选数据
5. 增加批量删除
This commit is contained in:
李小涛
2024-08-27 17:31:29 +08:00
parent c8e235bed6
commit b6e05c997d
8 changed files with 312 additions and 104 deletions

View File

@@ -48,3 +48,10 @@ export function BatchAdd(obj: AddReq) {
});
}
export function BatchDelete(keys: any) {
return request({
url: apiPrefix + 'multiple_delete/',
method: 'delete',
data: { keys },
});
}