mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-10 11:26:43 +08:00
16 lines
274 B
JavaScript
16 lines
274 B
JavaScript
import ajax from '@/api/boe/boeApiAjax.js'
|
|
|
|
/**
|
|
* 获取课程审核的 HRBP 审核 人信息
|
|
* 机构的id
|
|
* organization_id
|
|
*/
|
|
const getHRBP = function(orgId) {
|
|
return ajax.get('/b1/system/user/org-hrbp?organization_id='+orgId);
|
|
}
|
|
|
|
|
|
export default {
|
|
getHRBP
|
|
}
|