移动端V1.0

This commit is contained in:
2025-07-16 15:34:34 +08:00
commit 194b0750fd
1083 changed files with 178295 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
import request from '@/utils/request'
// 查询申请列表
export function listOwnApply() {
let query = {
pageNum: "1",
pageSize: "100"
};
return request({
'url': '/comprehensive/biyeapply/listOwnApply',
'method': 'get',
query
})
}
//列出可选学年
export function listEnableYear() {
return request({
'url': '/system/year/listEnableYear',
'method': 'get'
})
}
//申请优秀毕业生
export function doApply(data) {
return request({
'url': '/comprehensive/biyeapply/doApply',
'method': 'post',
'data': data
})
}
// 查询优秀毕业生详细
export function getBiyeapply(id) {
return request({
url: '/comprehensive/biyeapply/' + id,
method: 'get'
})
}
// 优秀毕业生查看专业排名
export function ownStuScoreMajorRank(){
return request({
// comprehensive/biyeapply/getOwnStuScoreMajorRank
'url': '/comprehensive/biyeapply/getOwnStuScoreMajorRank',
'method': 'get'
})
}