教师课程邀请审核

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
}

View File

@@ -274,13 +274,18 @@ const countWaitAudit = function() {
}
/**
* 当前用户需要审核的课程列表
* 管理员需要审核的课程列表
* @param {Object} query 同pageList
*/
const auditList = function(query) {
return ajax.post('/xboe/m/course/manage/audit-pagelist', query);
}
/**教师需要审核的课程列表*/
const teacherAuditList = function(query) {
return ajax.post('/xboe/m/course/audit/teacher-course', query);
}
/**
* 指定审核人,转审核人
* 点击“转审” 弹出教师查询窗口,查询教师,填写备注,提交,调用此接口
@@ -430,6 +435,7 @@ export default {
getHomework,
countWaitAudit,
auditList,
teacherAuditList,
auditAppoint,
getAuditInfo,
getAuditLogs,