205 lines
3.6 KiB
JavaScript
205 lines
3.6 KiB
JavaScript
import request from '@/utils/request'
|
|
|
|
|
|
|
|
export function doReApply(data) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/doReApply',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function doMany(data) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/doMany',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
|
|
export function listLeaderAll(query) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/listLeaderAll',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
export function listLeader(query) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/listLeader',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
|
|
export function listXgAll(query) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/listXgAll',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
export function listXg(query) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/listXg',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
|
|
|
|
export function listXwAll(query) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/listXwAll',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
export function listXw(query) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/listXw',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
|
|
export function doAudit(data) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/doAudit',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
|
|
export function doCancel(id) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/doCancel/' + id,
|
|
method: 'post'
|
|
})
|
|
}
|
|
|
|
export function listFdyAll(query) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/listFdyAll',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
export function listFdy(query) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/listFdy',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
export function doEdit(data) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/doEdit',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
|
|
export function listStu(query) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/listStu',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
|
|
export function doApply(data) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/doApply',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function getOwnFamily() {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/getOwnFamily',
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
|
|
|
|
export function getOwnKnrd() {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/getOwnKnrd',
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
export function getOwnExtraInfo() {
|
|
return request({
|
|
url: '/comprehensive/extraInfo/getOwnInfo',
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
|
|
export function getOwnInfo() {
|
|
return request({
|
|
url: '/system/student/getOwnInfo',
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 查询学生突发困难资助申请列表
|
|
export function listKnzzTufaApply(query) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询学生突发困难资助申请详细
|
|
export function getKnzzTufaApply(id) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增学生突发困难资助申请
|
|
export function addKnzzTufaApply(data) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/add',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改学生突发困难资助申请
|
|
export function updateKnzzTufaApply(data) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/update',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除学生突发困难资助申请
|
|
export function delKnzzTufaApply(id) {
|
|
return request({
|
|
url: '/comprehensive/knzzTufaApply/' + id,
|
|
method: 'post'
|
|
})
|
|
}
|