|
@@ -606,6 +606,7 @@ export default {
|
|
|
clearInterval(this.timeFlag);
|
|
|
},
|
|
|
methods: {
|
|
|
+ //点击确认开始关闭定时器
|
|
|
fileNameFormatter(val) {
|
|
|
if (val.filePath == null) {
|
|
|
return;
|
|
@@ -736,6 +737,9 @@ export default {
|
|
|
this.resetVisible = true;
|
|
|
//需要传输
|
|
|
|
|
|
+ //开始不调用测试了
|
|
|
+ clearInterval(this.timeFlag);
|
|
|
+
|
|
|
this.$http.post(`/generate/report/v2`, params, (res) => {
|
|
|
if (res && res.code == 200) {
|
|
|
// this.currentDownFun(res.data);
|
|
@@ -748,6 +752,7 @@ export default {
|
|
|
this.resetVisible = false;
|
|
|
});
|
|
|
} else {
|
|
|
+ this.resetVisible = false;
|
|
|
this.$message.error(res.msg);
|
|
|
}
|
|
|
});
|
|
@@ -767,6 +772,7 @@ export default {
|
|
|
},
|
|
|
//下载全部班级
|
|
|
downloadAllFun() {
|
|
|
+ clearInterval(this.timeFlag);
|
|
|
//下载全部班级
|
|
|
//循环班级列表拿到
|
|
|
let params = {};
|
|
@@ -795,6 +801,7 @@ export default {
|
|
|
});
|
|
|
// this.currentDownFun(res.data);
|
|
|
} else {
|
|
|
+ this.resetVisible = false;
|
|
|
this.$message.error(res.msg);
|
|
|
}
|
|
|
});
|