2026-01-30 11:10:31 +08:00
|
|
|
import request from '@/utils/request';
|
|
|
|
|
|
|
|
|
|
// 获取励志奖学金申请列表
|
|
|
|
|
export function listOwn(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/comprehensive/knzzGlApply/listStu',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 修改励志奖学金申请
|
|
|
|
|
export function doEdit(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/comprehensive/knzzGlApply/doEdit',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 取消励志奖学金申请
|
|
|
|
|
export function doCancel(id) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/comprehensive/knzzGlApply/doCancel/${id}`,
|
|
|
|
|
method: 'post'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 重新提交励志奖学金申请
|
|
|
|
|
export function doReApply(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/comprehensive/knzzGlApply/doReApply',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取单个励志奖学金申请详情
|
|
|
|
|
export function getDetail(id) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/comprehensive/knzzGlApply/${id}`,
|
|
|
|
|
method: 'get'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 新增励志奖学金申请
|
|
|
|
|
export function add(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/comprehensive/knzzGlApply/add',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 提交励志奖学金申请
|
|
|
|
|
export function doApply(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/comprehensive/knzzGlApply/doApply',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data
|
|
|
|
|
});
|
2026-01-30 14:27:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取体能测试成绩
|
|
|
|
|
export function selectTestStu(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/system/score/selectTestStu',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取处分记录
|
|
|
|
|
export function listDisciplinaryApplication(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/routine/disciplinaryApplication/list',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取字典数据
|
|
|
|
|
export function getDicts(type) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/system/dict/data/type/${type}`,
|
|
|
|
|
method: 'get'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取成绩排名
|
|
|
|
|
export function listOwnScoreClassRankByTag(tag) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/comprehensive/goodapply/listOwnScoreRankByTag',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: { tag }
|
|
|
|
|
});
|
2026-01-30 11:10:31 +08:00
|
|
|
}
|