学生资助-励志奖学金-移动端开发(补)

This commit is contained in:
2026-01-30 14:27:23 +08:00
parent 0f6f97fa3b
commit e364c48f7e
2 changed files with 192 additions and 3 deletions

View File

@@ -59,4 +59,39 @@ export function doApply(data) {
method: 'post',
data
});
}
// 获取体能测试成绩
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 }
});
}