|
@@ -2306,6 +2306,7 @@ export default {
|
|
|
grade: [],
|
|
|
courseUserid: "",
|
|
|
timer: null,
|
|
|
+ timer2: null,
|
|
|
checkId: "",
|
|
|
isDelete: 1,
|
|
|
addindex: 0,
|
|
@@ -5239,10 +5240,14 @@ export default {
|
|
|
beforeDestroy() {
|
|
|
clearTimeout(this.timer);
|
|
|
this.timer = null;
|
|
|
+ clearInterval(this.timer);
|
|
|
+ this.timer = null;
|
|
|
},
|
|
|
beforeRouteLeave(to, from, next) {
|
|
|
clearTimeout(this.timer);
|
|
|
this.timer = null;
|
|
|
+ clearInterval(this.timer2);
|
|
|
+ this.timer2 = null;
|
|
|
next();
|
|
|
},
|
|
|
created() {
|
|
@@ -5253,10 +5258,10 @@ export default {
|
|
|
this.selectType();
|
|
|
this.selectEva();
|
|
|
this.loading = false;
|
|
|
- setTimeout(() => {
|
|
|
+ this.timer2 = setInterval(() => {
|
|
|
this.selectCourseDetail();
|
|
|
this.selectEva();
|
|
|
- }, 500);
|
|
|
+ }, 5000);
|
|
|
},
|
|
|
};
|
|
|
</script>
|