From e4468d175e7f0fa5e5420c364981cdc33f53ec0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=A5=E6=B5=B7?= Date: Mon, 4 Dec 2023 20:48:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=89=B9=E9=87=8F=E6=89=A7=E8=A1=8C?= =?UTF-8?q?=E8=84=9A=E6=9C=AC=E6=97=B6loading=E4=B8=8D=E6=B6=88=E5=A4=B1?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/script/exec.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apps/script/exec.vue b/src/apps/script/exec.vue index b32a48c..6caadfe 100644 --- a/src/apps/script/exec.vue +++ b/src/apps/script/exec.vue @@ -59,6 +59,7 @@ export default class ScriptExec extends Vue { // 循环获取状态 if (taskIds.length > 1) { this.message = '批量提交成功,请在任务列表查看执行结果'; + this.loading = false; } else { this.timer = setInterval(() => this.getOutput(taskIds[0]), 1500); }