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