移动端V1.0
This commit is contained in:
26
api/good/biye.js
Normal file
26
api/good/biye.js
Normal file
@@ -0,0 +1,26 @@
|
||||
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 doApply(data){
|
||||
return request({
|
||||
'url': '/comprehensive/biyeapply/doApply',
|
||||
'method': 'post',
|
||||
'data': data
|
||||
})
|
||||
}
|
||||
|
||||
export function reApply(data){
|
||||
return request({
|
||||
'url': '/comprehensive/biyeapply/reApply',
|
||||
'method': 'post',
|
||||
'data': data
|
||||
})
|
||||
}
|
73
api/good/index.js
Normal file
73
api/good/index.js
Normal file
@@ -0,0 +1,73 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 优秀毕业生查看专业排名
|
||||
export function getOwnStuScoreMajorRank(){
|
||||
|
||||
return request({
|
||||
'url': '/comprehensive/biyeapply/getOwnStuScoreMajorRank',
|
||||
'method': 'get'
|
||||
})
|
||||
}
|
||||
|
||||
//自己的体测成绩
|
||||
export function listOwnSportScore(){
|
||||
|
||||
return request({
|
||||
'url': '/comprehensive/biyeapply/listOwnSportScore',
|
||||
'method': 'get'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
//列出可选学年
|
||||
export function listEnableYear(){
|
||||
|
||||
return request({
|
||||
'url': '/system/year/listEnableYear',
|
||||
'method': 'get'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
//列出自己的学业成绩和综合成绩班级排名
|
||||
export function listOwnScoreClassRank(){
|
||||
return request({
|
||||
'url': '/comprehensive/goodapply/listOwnScoreRank',
|
||||
'method': 'get'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
//列出学业奖学金可用申请类型
|
||||
export function listXyjxjCanType(){
|
||||
return request({
|
||||
'url': '/comprehensive/goodapply/listXyjxjCanType',
|
||||
'method': 'get'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
//通过申请的奖项类型代码查询自己课程通过的门数
|
||||
export function getOwnPassCountByCode(code){
|
||||
return request({
|
||||
'url': '/comprehensive/goodapply/getOwnPassCountByCode/'+ code,
|
||||
'method': 'get'
|
||||
})
|
||||
}
|
||||
|
||||
//通过申请的奖项类型代码查询自己的思想品德扣分项
|
||||
export function getOwnIamCountByCode(code){
|
||||
return request({
|
||||
'url': '/comprehensive/goodapply/getOwnIamCountByCode/'+ code,
|
||||
'method': 'get'
|
||||
})
|
||||
}
|
||||
|
||||
//通过申请的奖项类型代码查询自己的排名
|
||||
export function getOwnRankByCode(code) {
|
||||
return request({
|
||||
method: "GET",
|
||||
url: `/comprehensive/goodapply/getOwnRankByCode/${code}`
|
||||
});
|
||||
}
|
||||
|
10
api/good/lake.js
Normal file
10
api/good/lake.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
|
||||
export function listOwnApply(query) {
|
||||
return request({
|
||||
url: '/comprehensive/lakeapply/listOwnApply',
|
||||
method: 'get',
|
||||
query
|
||||
})
|
||||
}
|
40
api/good/shxs.js
Normal file
40
api/good/shxs.js
Normal file
@@ -0,0 +1,40 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function getMyApply(query) {
|
||||
return request({
|
||||
url: '/comprehensive/goodapply/selectApplySHXS',
|
||||
method: 'get',
|
||||
data: query
|
||||
})
|
||||
}
|
||||
export function verifyApplySHXS() {
|
||||
return request({
|
||||
url: '/comprehensive/goodapply/verifyApplySHXS',
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
|
||||
export function goodStuApply(data) {
|
||||
return request({
|
||||
url: '/comprehensive/goodapply/applySHXS',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
//三好学生重新提交
|
||||
export function reApply(data) {
|
||||
return request({
|
||||
method: 'POST',
|
||||
url: "/comprehensive/goodapply/reApply",
|
||||
data
|
||||
});
|
||||
}
|
||||
//取消申请
|
||||
export function cancelOwnApply(data) {
|
||||
return request({
|
||||
method: "post",
|
||||
url: "/comprehensive/goodapply/cancelOwnApply",
|
||||
data
|
||||
});
|
||||
}
|
35
api/good/xyjxj.js
Normal file
35
api/good/xyjxj.js
Normal file
@@ -0,0 +1,35 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function listOwnXyjxjApply(query) {
|
||||
return request({
|
||||
url: '/comprehensive/goodapply/listOwnXyjxjApply',
|
||||
method: 'get',
|
||||
query
|
||||
})
|
||||
}
|
||||
|
||||
//提交学业奖学金申请
|
||||
export function applyXyjxj(data) {
|
||||
return request({
|
||||
url: '/comprehensive/goodapply/applyXyjxj',
|
||||
method: 'post',
|
||||
data:data
|
||||
})
|
||||
}
|
||||
//重新提交学业奖学金申请
|
||||
export function reApply(data) {
|
||||
return request({
|
||||
url: '/comprehensive/goodapply/reApply',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
//取消申请
|
||||
export function cancelOwnApply(data) {
|
||||
return request({
|
||||
method: "post",
|
||||
url: "/comprehensive/goodapply/cancelOwnApply",
|
||||
data
|
||||
});
|
||||
}
|
42
api/good/yxbg.js
Normal file
42
api/good/yxbg.js
Normal file
@@ -0,0 +1,42 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
|
||||
export function listApplyXgb(query) {
|
||||
return request({
|
||||
url: '/comprehensive/goodapply/selectApplyYxgb',
|
||||
method: 'get',
|
||||
query
|
||||
})
|
||||
}
|
||||
|
||||
export function verifyApplyYXGB() {
|
||||
return request({
|
||||
url: '/comprehensive/goodapply/verifyApplyYXGB',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
//申请优秀学生干部
|
||||
export function addApplyYxgb(data) {
|
||||
return request({
|
||||
url: '/comprehensive/goodapply/applyYxgb',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
//重新申请优秀学生干部
|
||||
export function reApplyYXG(data) {
|
||||
return request({
|
||||
url: '/comprehensive/goodapply/reApplyYXGB',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
//取消申请
|
||||
export function cancelOwnApply(data) {
|
||||
return request({
|
||||
method: "post",
|
||||
url: "/comprehensive/goodapply/cancelOwnApply",
|
||||
data
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user