53 lines
996 B
JavaScript
53 lines
996 B
JavaScript
import request from '@/utils/request'
|
|
|
|
export function doImport(data) {
|
|
return request({
|
|
url: '/comprehensive/zxjtime/doImport',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 查询助学金审核时间列表
|
|
export function listZxjtime(query) {
|
|
return request({
|
|
url: '/comprehensive/zxjtime/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询助学金审核时间详细
|
|
export function getZxjtime(id) {
|
|
return request({
|
|
url: '/comprehensive/zxjtime/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增助学金审核时间
|
|
export function addZxjtime(data) {
|
|
return request({
|
|
url: '/comprehensive/zxjtime/add',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改助学金审核时间
|
|
export function updateZxjtime(data) {
|
|
return request({
|
|
url: '/comprehensive/zxjtime/update',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除助学金审核时间
|
|
export function delZxjtime(id) {
|
|
return request({
|
|
url: '/comprehensive/zxjtime/' + id,
|
|
method: 'post'
|
|
})
|
|
}
|