学生资助-特殊困难资助-移动端开发

This commit is contained in:
2026-01-22 16:27:49 +08:00
parent dc1970a4a6
commit 2a446118b6
5 changed files with 2459 additions and 5 deletions

85
api/finance/special.js Normal file
View File

@@ -0,0 +1,85 @@
import request from '@/utils/request'
// 获取当前用户的特殊困难资助申请记录
export function listOwn(params) {
return request({
url: '/comprehensive/knzzTufaApply/listStu',
method: 'get',
params
})
}
// 查询特殊困难资助申请详细
export function getApply(id) {
return request({
url: '/comprehensive/knzzTufaApply/' + id,
method: 'get'
})
}
// 新增特殊困难资助申请
export function addApply(data) {
return request({
url: '/comprehensive/knzzTufaApply/doApply',
method: 'post',
data: data
})
}
// 修改特殊困难资助申请
export function updateApply(data) {
return request({
url: '/comprehensive/knzzTufaApply/doEdit',
method: 'post',
data: data
})
}
// 删除特殊困难资助申请
export function delApply(id) {
return request({
url: '/comprehensive/knzzTufaApply/doCancel/' + id,
method: 'post'
})
}
// 重新提交特殊困难资助申请
export function reApply(data) {
return request({
url: '/comprehensive/knzzTufaApply/doReApply',
method: 'post',
data: 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'
})
}