63 lines
1.6 KiB
JavaScript
63 lines
1.6 KiB
JavaScript
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
|
|
})
|
|
}
|