diff --git a/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue b/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue index a79fe3a16..251cd85d7 100644 --- a/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue +++ b/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue @@ -382,7 +382,7 @@ export default { }, addModelForm (row) { if (this.addOrEdit == 'add') { - this.$http.postData('lawss/activiti/insertPolicitOpinionEOList', { ...row, prcId: this.$route.query.prcId, userId: this.$store.getters.userInfo.userId }, { _this: this }, res => { + this.$http.postData('lawss/activiti/insertPolicitOpinionEOList', { ...row, prcId: this.$route.query.prcId, sarLawsInfoId: this.$parent.dataForm.lawsId }, { _this: this }, res => { if (res.ok) { this.$message.success('操作成功') }else { @@ -391,7 +391,7 @@ export default { }, e => { }) } else if (this.addOrEdit == 'edit') { - this.$http.postData('lawss/activiti/updatePolicitOpinionEOList', { ...row, prcId: this.$route.query.prcId, userId: this.$store.getters.userInfo.userId }, { _this: this }, res => { + this.$http.putData('lawss/activiti/updatePolicitOpinionEOList', { ...row, prcId: this.$route.query.prcId, sarLawsInfoId: this.$parent.dataForm.lawsId }, { _this: this }, res => { if (res.ok) { this.$message.success('操作成功') }else {