From a001162ddafdde32915ad861b55bb6037499681b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Wed, 18 Oct 2023 14:40:51 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B8=83=E5=B1=80=E6=94=BF=E7=AD=96=E5=BE=81?= =?UTF-8?q?=E6=B1=82=E6=84=8F=E8=A7=81=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/policyConsultation/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue b/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue index 0bfd63585..980f259d2 100644 --- a/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue +++ b/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue @@ -336,6 +336,7 @@ title: '', checkBox: false, selectType: '', + roleForm:{}, } }, computed: { @@ -525,7 +526,7 @@ }, //启动流程 startProcessRollBack() { - const json = Object.assign(this.form, this.roleForm); + const json = Object.assign(this.dataForm, this.roleForm); json.commentText = this.commentText this.$http.post('lawss/activiti/startProcessRollBack', { createUser: this.$store.getters.userInfo.userId, @@ -548,7 +549,7 @@ }, //提交流程 completeTask(taskId) { - const json = Object.assign(this.form, this.roleForm); + const json = Object.assign(this.dataForm, this.roleForm); json.commentText = this.commentText this.$http.post('lawss/activiti/completeTask', { json: JSON.stringify(json),