diff --git a/fe/PC/public/version.json b/fe/PC/public/version.json index e04eacc4e..2c16ab837 100644 --- a/fe/PC/public/version.json +++ b/fe/PC/public/version.json @@ -1,3 +1,3 @@ { - "version": "1.0.73" + "version": "1.0.76" } \ No newline at end of file diff --git a/fe/PC/src/components/StepsCountPlanForm/index.vue b/fe/PC/src/components/StepsCountPlanForm/index.vue index 8a4e921c9..4bedca798 100644 --- a/fe/PC/src/components/StepsCountPlanForm/index.vue +++ b/fe/PC/src/components/StepsCountPlanForm/index.vue @@ -681,20 +681,28 @@ export default { this.$warningMsg("请选择状态"); return } - this.loading = true; - // this.otherFormData.requestType = 2 - this.splitFormData(this.otherFormData).then( - (resolve) => { - this.pageStatus = "success"; - this.active++; - this.loading = false; - }, - (reject) => { - this.pageStatus = "error"; - this.active++; - this.loading = false; - } - ); + this.$confirm('是否确定已关闭接口?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning' + }).then(() => { + this.loading = true; + // this.otherFormData.requestType = 2 + this.splitFormData(this.otherFormData).then( + (resolve) => { + this.pageStatus = "success"; + this.active++; + this.loading = false; + }, + (reject) => { + this.pageStatus = "error"; + this.active++; + this.loading = false; + } + ); + }).catch(() => { + + }); } // else if (this.active == 4) { // postCreate(this.previewFormData, 'count-plan').then(res => {