|
@@ -28,7 +28,7 @@
|
|
'exam-point': true,
|
|
'exam-point': true,
|
|
'exam-point-green': item.points >= 90,
|
|
'exam-point-green': item.points >= 90,
|
|
'exam-point-yellow': item.points >= 60 && item.points < 90,
|
|
'exam-point-yellow': item.points >= 60 && item.points < 90,
|
|
- 'exam-point-red': item.points < 60
|
|
|
|
|
|
+ 'exam-point-red': item.points < 60,
|
|
}"
|
|
}"
|
|
>
|
|
>
|
|
{{ item.points }}
|
|
{{ item.points }}
|
|
@@ -73,6 +73,7 @@ export default {
|
|
res.data.forEach((item, index) => {
|
|
res.data.forEach((item, index) => {
|
|
this.getExamDetailFun(item, index, index + 1 === res.data.length);
|
|
this.getExamDetailFun(item, index, index + 1 === res.data.length);
|
|
});
|
|
});
|
|
|
|
+ this.finished = true;
|
|
})
|
|
})
|
|
.catch(() => {
|
|
.catch(() => {
|
|
this.$store.commit("toggleLoading", false);
|
|
this.$store.commit("toggleLoading", false);
|
|
@@ -89,7 +90,6 @@ export default {
|
|
.then(res => {
|
|
.then(res => {
|
|
this.examHistoryList.push({ ...item, examName: res.data.name });
|
|
this.examHistoryList.push({ ...item, examName: res.data.name });
|
|
if (isLast) {
|
|
if (isLast) {
|
|
- this.finished = true;
|
|
|
|
this.$store.commit("toggleLoading", false);
|
|
this.$store.commit("toggleLoading", false);
|
|
}
|
|
}
|
|
})
|
|
})
|