chore: 去除join

This commit is contained in:
dap
2024-10-13 16:01:50 +08:00
parent c60f826d31
commit 6dedefb6b9
3 changed files with 3 additions and 3 deletions

View File

@@ -37,5 +37,5 @@ export function clientChangeStatus(data: any) {
}
export function clientRemove(ids: IDS) {
return requestClient.deleteWithMsg(`${Api.root}/${ids.join(',')}`);
return requestClient.deleteWithMsg(`${Api.root}/${ids}`);
}