This commit is contained in:
guochunsi
2026-01-15 11:34:31 +08:00
parent 872c2f40d2
commit 001bb46939
2 changed files with 668 additions and 598 deletions

View File

@@ -143,3 +143,14 @@ export function validatePhone(rule: any, value: any, callback: any, isEdit: bool
}
});
}
/**
* 根据角色代码获取用户列表
*/
export function getUserListByRole(obj: string) {
return request({
url: '/admin/user/info/roleuser/' + obj,
method: 'get'
});
}