移动端V1.0
This commit is contained in:
61
api/rtStuDropOutSchool/rtStuDropOutSchool.js
Normal file
61
api/rtStuDropOutSchool/rtStuDropOutSchool.js
Normal file
@@ -0,0 +1,61 @@
|
||||
import request from '@/utils/request'
|
||||
// 查询学生退学申请记录列表
|
||||
export function listRtStuDropOutSchool(query) {
|
||||
return request({
|
||||
url: '/routine/rtStuDropOutSchool/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询学生退学申请记录详细
|
||||
export function getRtStuDropOutSchool(dropOutSchoolId) {
|
||||
return request({
|
||||
url: '/routine/rtStuDropOutSchool/' + dropOutSchoolId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 查询学生退学申请记录详细
|
||||
export function getRtStuDropOutSchoolByprocInsId(procInsId) {
|
||||
return request({
|
||||
url: '/routine/rtStuDropOutSchool/getRtStuDropOutSchoolByprocInsId/' + procInsId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增学生退学申请记录
|
||||
export function addRtStuDropOutSchool(data) {
|
||||
return request({
|
||||
url: '/routine/rtStuDropOutSchool/add',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 保存学生退学申请记录
|
||||
export function save(data) {
|
||||
return request({
|
||||
url: '/routine/rtStuDropOutSchool/save',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
// 修改学生退学申请记录
|
||||
export function updateRtStuDropOutSchool(data) {
|
||||
return request({
|
||||
url: '/routine/rtStuDropOutSchool/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除学生退学申请记录
|
||||
export function delRtStuDropOutSchool(dropOutSchoolId) {
|
||||
return request({
|
||||
url: '/routine/rtStuDropOutSchool/' + dropOutSchoolId,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user