From 0d7ba12b4ce88b041d66dc8f003192d515da15e6 Mon Sep 17 00:00:00 2001 From: zyn Date: Wed, 25 Oct 2023 17:28:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=85=A5=E4=BC=9A=E3=80=81?= =?UTF-8?q?=E5=8F=82=E4=BC=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/policyTopicEnrollment/index.vue | 10 +++++----- .../creatProcess/policyTopicParticipation/index.vue | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/policyTopicEnrollment/index.vue b/src/pages/processCenter/pages/creatProcess/policyTopicEnrollment/index.vue index e1d649180..1cab262b7 100644 --- a/src/pages/processCenter/pages/creatProcess/policyTopicEnrollment/index.vue +++ b/src/pages/processCenter/pages/creatProcess/policyTopicEnrollment/index.vue @@ -66,7 +66,7 @@ @add="add('insideContactInformationList')" @delete="onDelete('insideContactInformationList', $event)" > - +
@@ -561,12 +561,12 @@ export default { }, async submit () { this.footerLoading = true - const json = Object.assign(this.form, this.roleForm); + const json = JSON.stringify(Object.assign(this.form, this.roleForm)); let completeTaskQuery = { taskIds: this.$route.query.taskIds, userId : this.$store.getters.userInfo.userId, - json: JSON.stringify(json) + json } if (!this.$route.query.taskIds) { @@ -575,7 +575,7 @@ export default { createUser: this.$store.getters.userInfo.userId, createUserName: this.$store.getters.userInfo.userName, type: '30', - json: JSON.stringify(json) + json } const res = await this.$http._post('lawss/activiti/startProcessRollBack', startProcessRollBackQuery) if(!res.ok) { @@ -604,7 +604,7 @@ export default { await this.$router.push({path:'/processCenter?tabsName=ProcessCenter'}) } else { if (this.$route.params.type === 'step4') { - this.processCreate() + this.processCreate(json) } else { this.$message.success(completeTaskRes.message) this.footerLoading = false diff --git a/src/pages/processCenter/pages/creatProcess/policyTopicParticipation/index.vue b/src/pages/processCenter/pages/creatProcess/policyTopicParticipation/index.vue index 7c37f895a..36d43544b 100644 --- a/src/pages/processCenter/pages/creatProcess/policyTopicParticipation/index.vue +++ b/src/pages/processCenter/pages/creatProcess/policyTopicParticipation/index.vue @@ -74,7 +74,7 @@
- +
@@ -438,12 +438,12 @@ export default { }, async submit () { this.footerLoading = true - const json = Object.assign(this.form, this.roleForm); + const json = JSON.stringify(Object.assign(this.form, this.roleForm)); let completeTaskQuery = { taskIds: this.$route.query.taskIds, userId : this.$store.getters.userInfo.userId, - json: JSON.stringify(json) + json } if (!this.$route.query.taskIds) { @@ -452,7 +452,7 @@ export default { createUser: this.$store.getters.userInfo.userId, createUserName: this.$store.getters.userInfo.userName, type: '31', - json: JSON.stringify(json) + json } const res = await this.$http._post('lawss/activiti/startProcessRollBack', startProcessRollBackQuery) if(!res.ok) { @@ -481,7 +481,7 @@ export default { await this.$router.push({path:'/processCenter?tabsName=ProcessCenter'}) } else { if (this.$route.params.type === 'step4') { - this.processCreate() + this.processCreate(json) } else { this.$message.success(completeTaskRes.message) this.footerLoading = false