From 7086786f70266d73c2606068d4163cfc3df1eafd Mon Sep 17 00:00:00 2001 From: qq787203167 <787203167@qq.com> Date: Mon, 9 May 2022 18:06:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E8=AE=BE=E8=AE=A1=E7=AC=A6?= =?UTF-8?q?=E5=90=88=E6=80=A7=E7=A1=AE=E8=AE=A4=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/circulationHistory.vue | 11 +++- .../components/engineeringConfirmation.vue | 2 + .../reviewedByThePersonInCharge.vue | 6 ++ .../processForm/handshakeProcess/index.vue | 18 +++-- .../processForm/taskListProcess/index.vue | 65 ++++++++++++++++--- .../projectManagement/components/TaskList.vue | 49 ++++++++------ 6 files changed, 113 insertions(+), 38 deletions(-) diff --git a/jero-web/src/views/processCenter/components/circulationHistory.vue b/jero-web/src/views/processCenter/components/circulationHistory.vue index d86dd8c27..f77577070 100644 --- a/jero-web/src/views/processCenter/components/circulationHistory.vue +++ b/jero-web/src/views/processCenter/components/circulationHistory.vue @@ -67,6 +67,12 @@ export default { name: 'circulationHistory', + props: { + url: { + type: String, + default: '/workFlow/get_list_by_instance' + } + }, data() { return { dataSource: [], @@ -140,9 +146,10 @@ methods: { getList() { let query = { - prcNum: this.$route.query.prcNum + prcNum: this.$route.query.prcNum, + prcId: this.$route.query.actiProcInstId } - getAction('/workFlow/get_list_by_instance', query).then((res) => { + getAction(this.url, query).then((res) => { this.dataSource = res }) }, diff --git a/jero-web/src/views/processCenter/components/engineeringConfirmation.vue b/jero-web/src/views/processCenter/components/engineeringConfirmation.vue index 4882eadb2..6951aef25 100644 --- a/jero-web/src/views/processCenter/components/engineeringConfirmation.vue +++ b/jero-web/src/views/processCenter/components/engineeringConfirmation.vue @@ -41,6 +41,7 @@ {{$t('edit')}} @@ -55,6 +56,7 @@ {{$t('deleteLib')}} diff --git a/jero-web/src/views/processCenter/components/reviewedByThePersonInCharge.vue b/jero-web/src/views/processCenter/components/reviewedByThePersonInCharge.vue index 3632066fb..956e31220 100644 --- a/jero-web/src/views/processCenter/components/reviewedByThePersonInCharge.vue +++ b/jero-web/src/views/processCenter/components/reviewedByThePersonInCharge.vue @@ -52,6 +52,7 @@