feat(system): implement robust batch user creation integrating existing pinyin logic and backend duplication prevention

This commit is contained in:
DXC
2026-04-17 12:16:45 +08:00
parent 8291a89898
commit d651d19e86
4 changed files with 172 additions and 4 deletions

View File

@ -66,4 +66,13 @@ export function changeMyPassword(data: { new_password: string; confirm_password:
method: 'put',
data
})
}
// 【新增】批量创建用户
export function batchCreateUser(data: any[]) {
return request({
url: '/v1/auth/user/batch',
method: 'post',
data
})
}