mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-15 05:46:43 +08:00
Merge remote-tracking branch 'origin/teacher' into dev
This commit is contained in:
@@ -26,6 +26,13 @@ import ajax from '@/api/boe/boeApiAjax.js'
|
||||
const editTeacher = function(data) {
|
||||
return ajax.postJson('/b1/system/teacher/add-and-edit-teacher',data);
|
||||
}
|
||||
// api
|
||||
/**
|
||||
* 发薪地接口
|
||||
*/
|
||||
const getPayrollPlace = function(id) {
|
||||
return ajax.get('/b1/system/teacher/payroll-place');
|
||||
}
|
||||
/**
|
||||
* 教师体系和级别接口
|
||||
* @param {
|
||||
@@ -141,5 +148,6 @@ export default {
|
||||
getCourseInfo,
|
||||
teacherUpgradePrecess,
|
||||
deleteModelTeacher,
|
||||
editModelTeacher
|
||||
editModelTeacher,
|
||||
getPayrollPlace
|
||||
}
|
||||
|
||||
@@ -23,6 +23,10 @@ const getInfoById = function(id) {
|
||||
* pageIndex 起始页
|
||||
* pageSize 每页条数
|
||||
* name 姓名
|
||||
* tlevelId级别
|
||||
* salaryId发薪地
|
||||
* tsystemId
|
||||
|
||||
* } query
|
||||
* @returns
|
||||
*/
|
||||
@@ -104,7 +108,7 @@ const save = function(data) {
|
||||
* @param {teacherId->sysId : 原系统的id,接口返回} sysId
|
||||
*/
|
||||
const updateSysId = function(id,sysId) {
|
||||
return ajax.postJson('/xboe/teacher/update-sysid',{id,sysId});
|
||||
return ajax.post('/xboe/teacher/update-sysid',{id,sysId});
|
||||
|
||||
}
|
||||
|
||||
@@ -183,6 +187,17 @@ const exports=function(query){
|
||||
const findAllCourses=function(query){
|
||||
return ajax.post('/xboe/teacher/compose/find/courses',query);
|
||||
}
|
||||
/**
|
||||
* 内部讲师-删除模块讲师接口
|
||||
* @param {
|
||||
courseId // 课程id
|
||||
modId // 模块id
|
||||
teacherId // 教师id
|
||||
remark // 备注
|
||||
*/
|
||||
const syncUpdate = function(data) {
|
||||
return ajax.postJson('/xboe/teacher/update-sync',data);
|
||||
}
|
||||
|
||||
export default {
|
||||
findByName,
|
||||
@@ -197,5 +212,6 @@ export default {
|
||||
has,
|
||||
start,
|
||||
end,
|
||||
exports
|
||||
exports,
|
||||
syncUpdate
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user