fix:知识点得分率计算;

This commit is contained in:
小杨 2024-10-31 16:01:50 +08:00
parent 7da598b30e
commit 6370086c85
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()