mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-15 22:06:43 +08:00
教师课程邀请审核
This commit is contained in:
15
src/api/boe/HRBP.js
Normal file
15
src/api/boe/HRBP.js
Normal 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
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user