Commit 1f7efcaa authored by 徐一鸣's avatar 徐一鸣

应用构建fixed

parent c1f94aa7
...@@ -533,6 +533,10 @@ export default { ...@@ -533,6 +533,10 @@ export default {
this.step2Loading = false; this.step2Loading = false;
}, },
step2Action() { step2Action() {
if (this.step2Loading) {
return;
}
this.$refs.deploy_info_form.validate((valid) => { this.$refs.deploy_info_form.validate((valid) => {
if (valid) { if (valid) {
this.step2Loading = true; this.step2Loading = true;
...@@ -612,6 +616,10 @@ export default { ...@@ -612,6 +616,10 @@ export default {
this.image_info.file = ""; this.image_info.file = "";
}, },
addImage() { addImage() {
if (this.addImageLoading) {
return;
}
this.$refs.image_info_form.validate((valid) => { this.$refs.image_info_form.validate((valid) => {
if (valid) { if (valid) {
this.addImageLoading = true; this.addImageLoading = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment