From 66d69b26d8e086a32cadf68d0db57d3007abb896 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Mon, 11 Apr 2022 16:23:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=8B=E6=9C=BA=E7=AB=AF=E3=80=91=E6=A0=87?= =?UTF-8?q?=E5=87=86=E6=B8=85=E5=8D=95=E5=8F=91=E5=B8=83/=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E6=B5=81=E7=A8=8B=20=E6=9C=80=E5=90=8E=E4=B8=80?= =?UTF-8?q?=E6=AD=A5=E7=82=B9=E5=90=8C=E6=84=8F=E6=B5=81=E7=A8=8B=E4=B8=8D?= =?UTF-8?q?=E4=BC=9A=E7=BB=93=E6=9D=9F=2052495?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/processCenter/pages/phone/bzqdfb/step4.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/pages/processCenter/pages/phone/bzqdfb/step4.vue b/src/pages/processCenter/pages/phone/bzqdfb/step4.vue index 54fe1bc8c..2fe23af79 100644 --- a/src/pages/processCenter/pages/phone/bzqdfb/step4.vue +++ b/src/pages/processCenter/pages/phone/bzqdfb/step4.vue @@ -400,6 +400,7 @@ export default { if(!this.commentText){ this.$message.warning('请填写审批意见') }else{ + this.isSubmit = true this.listForm.approvalOpinion = "1"; this.saveLoading = true this.listForm.commentText = this.commentText; @@ -416,12 +417,14 @@ export default { this.$router.push("/processCenter"); } this.saveLoading = false + this.isSubmit = false }); }/**/ }, //提交事件 handleSubmit() { - this.isSubmit = true + this.isSubmit = true; + this.listForm.approvalOpinion = "2"; this.listForm.commentText = this.commentText; const json = JSON.stringify(this.listForm); this.$http.post("lawss/activiti/completeTask", { @@ -432,8 +435,8 @@ export default { _this: this }, res => { if (res.success) { - this.$message.success(res.message) - this.$router.push('/processCenter') + this.$message.success(res.message); + this.$router.push("/processCenter"); } this.isSubmit = false });