初始化
This commit is contained in:
43
api/compositive-performance/instructorJobPerformance.js
Normal file
43
api/compositive-performance/instructorJobPerformance.js
Normal file
@@ -0,0 +1,43 @@
|
||||
import request from '@/utils/request';
|
||||
|
||||
// 综合绩效-辅导员工作绩效填报列表查询
|
||||
export function instructorJobPerformanceList(query) {
|
||||
return request({
|
||||
url: '/teacher/active/list',
|
||||
method: 'get',
|
||||
data: query
|
||||
})
|
||||
}
|
||||
// 综合绩效-辅导员工作绩效填报新增
|
||||
export function instructorJobPerformanceAdd(data) {
|
||||
return request({
|
||||
url: '/teacher/active/add',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 综合绩效-辅导员工作绩效填报修改
|
||||
export function instructorJobPerformanceUpdate(data) {
|
||||
return request({
|
||||
url: '/teacher/active/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 综合绩效-辅导员工作绩效填报详情
|
||||
export function instructorJobPerformanceDetail(id) {
|
||||
return request({
|
||||
url: '/teacher/active/' + id,
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
||||
// 综合绩效-辅导员工作绩效 删除
|
||||
export function delinstructorJobPerformance(id) {
|
||||
return request({
|
||||
url: '/teacher/active/' + id,
|
||||
method: 'post',
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user