教师课程邀请审核

This commit is contained in:
daihh
2022-09-06 19:59:39 +08:00
parent f1199cfd01
commit a9bb2f0222
5 changed files with 60 additions and 90 deletions

15
src/api/boe/HRBP.js Normal file
View File

@@ -0,0 +1,15 @@
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
}