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),