Browse Source

修改下载时的时机问题

plg 2 months ago
parent
commit
b51695928a
1 changed files with 7 additions and 0 deletions
  1. 7 0
      src/views/manage/channelManagement/channelManagement.vue

+ 7 - 0
src/views/manage/channelManagement/channelManagement.vue

@@ -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);
         }
       });