diff --git a/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue b/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue index 2cafc7345..f826f296a 100644 --- a/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue +++ b/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue @@ -251,10 +251,19 @@ }, }, mounted() { + this.getData() }, methods: { getData() { + let query = { + taskDefinitionKey: this.$route.query.taskDefinitionKey, + prcId: this.$route.query.prcId + } + this.$http.get('/lawss/activiti/queryPolicitOpinionEOList', query, {_this: this}, res => { + if (res.success) { + } + }) }, generateSummary() { @@ -352,7 +361,7 @@ } }, save(callback) { - callback && callback(this.histortData,this.deleteList.join(',')) + callback && callback(this.histortData, this.deleteList.join(',')) }, }, } diff --git a/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue b/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue index 009d82c28..32d7b66b6 100644 --- a/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue +++ b/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue @@ -507,7 +507,7 @@ form: this.dataForm, commentText: this.commentText, policySolicitOpinionEOList: row, - deleteIds: ids, + removeIds: ids, })); saveTaskForPub(_formData).then(res => { this.saveLoading = false; @@ -587,7 +587,7 @@ let query = { form: json, policySolicitOpinionEOList: row, - deleteIds: ids, + removeIds: ids, commentText: this.commentText } this.openButtonLoading()