From 19b4fb8d825b52309f61d03a734cf534a443adfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Thu, 19 Oct 2023 11:52:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E6=94=BF=E7=AD=96=E5=BE=81?= =?UTF-8?q?=E6=B1=82=E6=84=8F=E8=A7=81=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/solicitationList.vue | 11 ++++++++++- .../pages/creatProcess/policyConsultation/index.vue | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) 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()