Merge pull request 'fix:知识点得分率计算;' (#384) from yangws into main

Reviewed-on: #384
This commit is contained in:
yangws 2024-10-31 16:02:13 +08:00
commit 0433febf06
1 changed files with 2 additions and 5 deletions

View File

@ -79,12 +79,9 @@ watch(() => useOverview.tableList,() => {
return acc + Number(cur.score)
},0)
//
const studentList = useOverview.tableList.filter(item => useOverview.allData[0].hasAnswers.includes(item.studentid))
avatarScore.value = studentList.reduce((acc, cur) => {
avatarScore.value = hasStudents.value.reduce((acc, cur) => {
return acc + Number(cur.getScore)
},0) / studentList.length
console.log(avatarScore.value,'useOverview.tableList');
},0) / hasStudents.value.length
//
getKonwledge()