From 1f7efcaaae71d6c6670f9085ea43fc0c59fa5f83 Mon Sep 17 00:00:00 2001 From: xuyiming Date: Thu, 13 Aug 2020 17:13:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=94=E7=94=A8=E6=9E=84=E5=BB=BAfixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/workbench/component-center/app-build/index.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/pages/workbench/component-center/app-build/index.vue b/src/pages/workbench/component-center/app-build/index.vue index 5ec68e6..4c0be79 100644 --- a/src/pages/workbench/component-center/app-build/index.vue +++ b/src/pages/workbench/component-center/app-build/index.vue @@ -533,6 +533,10 @@ export default { this.step2Loading = false; }, step2Action() { + if (this.step2Loading) { + return; + } + this.$refs.deploy_info_form.validate((valid) => { if (valid) { this.step2Loading = true; @@ -612,6 +616,10 @@ export default { this.image_info.file = ""; }, addImage() { + if (this.addImageLoading) { + return; + } + this.$refs.image_info_form.validate((valid) => { if (valid) { this.addImageLoading = true; -- 2.26.0