Merge pull request 'fix:知识点得分率计算;' (#384) from yangws into main
Reviewed-on: #384
This commit is contained in:
commit
0433febf06
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue