64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
![]() |
import request from '@/utils/request'
|
||
|
|
||
|
// 查询辅导员综合评价完成状态列表
|
||
|
export function getTeacherEvaluationStatus(query) {
|
||
|
return request({
|
||
|
url: '/comprehensive/teacherEvaluationStatus/list',
|
||
|
method: 'get',
|
||
|
params: query
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 导出辅导员综合评价完成状态
|
||
|
export function exportTeacherEvaluationStatus(query) {
|
||
|
return request({
|
||
|
url: '/comprehensive/teacherEvaluationStatus/export',
|
||
|
method: 'get',
|
||
|
params: query,
|
||
|
responseType: 'blob'
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 查询辅导员待办事项数量
|
||
|
export function getTeacherTodoCount(query) {
|
||
|
return request({
|
||
|
url: '/comprehensive/teacherEvaluationStatus/todoCount',
|
||
|
method: 'get',
|
||
|
params: query
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 查询综合评价成绩导入状态
|
||
|
export function getScoreImportStatus(query) {
|
||
|
return request({
|
||
|
url: '/comprehensive/teacherEvaluationStatus/scoreImportStatus',
|
||
|
method: 'get',
|
||
|
params: query
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 获取辅导员详细信息
|
||
|
export function getTeacherDetail(teacherId) {
|
||
|
return request({
|
||
|
url: '/comprehensive/teacherEvaluationStatus/' + teacherId,
|
||
|
method: 'get'
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 批量更新辅导员评价状态
|
||
|
export function batchUpdateStatus(data) {
|
||
|
return request({
|
||
|
url: '/comprehensive/teacherEvaluationStatus/batchUpdate',
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 获取学院列表
|
||
|
export function getDeptNameList(query) {
|
||
|
return request({
|
||
|
url: '/comprehensive/teacherEvaluationStatus/deptList',
|
||
|
method: 'get',
|
||
|
params: query
|
||
|
})
|
||
|
}
|