学年标签适配学生奖惩、学生资助模块
This commit is contained in:
@@ -285,6 +285,7 @@ import {
|
||||
fdyAudit, getStuScoreMajorRank,
|
||||
listFdy,
|
||||
listStuSportScore,
|
||||
listStuSportScoreByTag,
|
||||
updateBiyeapply
|
||||
} from '@/api/comprehensive/biyeapply'
|
||||
|
||||
@@ -476,7 +477,13 @@ export default {
|
||||
}
|
||||
},
|
||||
async listStuSportScore(stuNo) {
|
||||
let res = await listStuSportScore(stuNo)
|
||||
/* let res = await listStuSportScore(stuNo) */
|
||||
/*当前功能是获取'优秀毕业生---YXBY'标签对应学年的体测成绩。
|
||||
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||
---尽量避免学年标签字典的更改!!!! */
|
||||
const yearTag = 'YXBY'
|
||||
let res = await listStuSportScoreByTag(stuNo,yearTag)
|
||||
if (res.code == 200) {
|
||||
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user