Compare commits

..

3 Commits

Author SHA1 Message Date
小杨 a0477a18df fix:推送分值丢失问题; 2024-11-26 14:55:02 +08:00
yangws f3f3ada1ed Merge pull request 'fix:放大饼图;' (#419) from yangws into main
Reviewed-on: #419
2024-11-25 16:02:47 +08:00
yangws 2cecbc14fd Merge pull request 'yangws' (#418) from yangws into main
Reviewed-on: #418
2024-11-22 09:27:44 +08:00
2 changed files with 7 additions and 3 deletions

View File

@ -151,8 +151,12 @@ const getXValue = () => {
};
watch(() => useOverview.tableList, () => {
expectedDuration.value = useOverview.tableList.map(item => (Number(item.timelength) * 60 / useOverview.allData.length).toFixed(2));
const time = useOverview.tableList.map(item => Number(item.timelength))
const avatarTime = time.reduce((acc, cur) => {
return acc + cur
},0) / time.length
expectedDuration.value = useOverview.allData.map(() => (Number(avatarTime) * 60 / useOverview.allData.length).toFixed(2));
//
nextTick(() => {
initChart();

View File

@ -680,7 +680,7 @@ const handleClassOverviewOpen = (type) =>{
const allTeacherRating = allTopic.reduce((acc, cur) => acc + cur.teacherRating, 0)
rightAnswer > 0?item.scoingRate = (score/allTeacherRating * 100).toFixed(0):item.scoingRate = ''
item.getScore = score
item.getScore = allTeacherRating
}else{
item.scoingRate = ''
item.getScore = 0