feat(system): implement robust batch user creation integrating existing pinyin logic and backend duplication prevention
This commit is contained in:
@ -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
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user