"src/components/service-tabs/service-tab-detail.vue" did not exist on "f7dc396cef62aa51e12c7c53cb7e0a881302fbe4"
Commit 1f7efcaa authored by 徐一鸣's avatar 徐一鸣

应用构建fixed

parent c1f94aa7
......@@ -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;
......
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