学年标签适配学生奖惩、学生资助模块
This commit is contained in:
@@ -375,7 +375,7 @@ import { listSelect } from '@/api/stuCQS/lake/type'
|
||||
import { listJwc, jwcAudit, manyAudit } from '@/api/stuCQS/lake/apply'
|
||||
|
||||
import {
|
||||
listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam, applyStatus
|
||||
listStuScoreClassRank,listStuScoreClassRankByTag ,listStuYearCourseScore, countStuPass, countStuIam, applyStatus
|
||||
} from '@/api/stuCQS/good/audit'
|
||||
|
||||
import lodash from 'lodash'
|
||||
@@ -655,7 +655,14 @@ export default {
|
||||
},
|
||||
async listStuScoreClassRank() {
|
||||
let stuNo = this.auditForm.stuNo
|
||||
let res = await listStuScoreClassRank(stuNo)
|
||||
/* let res = await listStuScoreClassRank(stuNo) */
|
||||
/* 此处使用硬编码,请根据实际情况修改。
|
||||
当前功能是获取'静湖之星---JHZX'标签对应学年的成绩排名信息。
|
||||
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||
---尽量避免学年标签字典的更改!!!! */
|
||||
const yearTag = 'JHZX'
|
||||
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||
if (res.code == 200) {
|
||||
this.score_list = lodash.cloneDeep(res.data)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user