外宿申请和入伍保留学籍申请移动端审批(同意的流程)完成
This commit is contained in:
62
api/routine/enlistmentReserve/enlistmentReserveAttach.js
Normal file
62
api/routine/enlistmentReserve/enlistmentReserveAttach.js
Normal file
@@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询保留学籍申请附件(入伍通知书等)列表
|
||||
export function listEnlistmentReserveAttach(query) {
|
||||
return request({
|
||||
url: '/routine/enlistmentReserveAttach/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询保留学籍申请附件(入伍通知书等)详细
|
||||
export function getEnlistmentReserveAttach(id) {
|
||||
return request({
|
||||
url: '/routine/enlistmentReserveAttach/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增保留学籍申请附件(入伍通知书等)
|
||||
export function addEnlistmentReserveAttach(data) {
|
||||
return request({
|
||||
url: '/routine/enlistmentReserveAttach/add',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 批量新增保留学籍申请附件(入伍通知书等)
|
||||
export function batchAddEnlistmentReserveAttach(data) {
|
||||
return request({
|
||||
url: '/routine/enlistmentReserveAttach/batchAdd',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改保留学籍申请附件(入伍通知书等)
|
||||
export function updateEnlistmentReserveAttach(data) {
|
||||
return request({
|
||||
url: '/routine/enlistmentReserveAttach/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除保留学籍申请附件(入伍通知书等)
|
||||
export function delEnlistmentReserveAttach(id) {
|
||||
return request({
|
||||
url: '/routine/enlistmentReserveAttach/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
|
||||
// 删除保留学籍申请附件(入伍通知书等)
|
||||
export function deleteRtEnlistmentReserveAttachByFileNameAndStuName(query) {
|
||||
return request({
|
||||
url: '/routine/enlistmentReserveAttach/deleteRtEnlistmentReserve',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user