From b14c36ce1628d3f912354431125355b420dad644 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 31 Mar 2022 18:25:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=89=93=E5=8C=85=E6=B5=81?= =?UTF-8?q?=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/oms/apps/AppDeploy/AppDeploy.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project/oms/apps/AppDeploy/AppDeploy.vue b/project/oms/apps/AppDeploy/AppDeploy.vue index 4c4af996..bda94104 100644 --- a/project/oms/apps/AppDeploy/AppDeploy.vue +++ b/project/oms/apps/AppDeploy/AppDeploy.vue @@ -108,12 +108,14 @@ export default { if (count == 30) { clearInterval(timer) loading.close() + this.$message.error("打包失败!") } else this.instance.post("/node/autodeploy/confirmZip", null, { params: {id} }).then(res => { if (res?.code == 0) { clearInterval(timer) loading.close() + this.getTableData() } else count++ }, 10000) }) @@ -152,7 +154,6 @@ export default { }, created() { this.getTableData() - this.search.areaId = this.user.info.areaId } }