单个查询

This commit is contained in:
yaojian
2026-03-04 15:28:25 +08:00
parent 28f7c1945e
commit ce6f6ca15b
2 changed files with 16 additions and 12 deletions

View File

@@ -702,16 +702,16 @@ const handleDetailConfirm = async (type: string, row: any) => {
let res: any
switch (type) {
case 'score':
res = await confirmScoreByStuNo(row.stuNo)
res = await confirmScoreByStuNo(row.stuNo, row.graduYear)
break
case 'conduct':
res = await confirmConductByStuNo(row.stuNo)
res = await confirmConductByStuNo(row.stuNo, row.graduYear)
break
case 'punish':
res = await confirmPunishByStuNo(row.stuNo)
res = await confirmPunishByStuNo(row.stuNo, row.graduYear)
break
case 'skill':
res = await confirmSkillByStuNo(row.stuNo)
res = await confirmSkillByStuNo(row.stuNo, row.graduYear)
break
}
if (res.data) {