From af0f5ab8cba851bc2b7410733a92483fbbc5fdbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Fri, 12 Jan 2024 15:13:04 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E5=BE=81=E6=B1=82=E6=84=8F=E8=A7=81?= =?UTF-8?q?=E6=B5=81=E7=A8=8B=E8=BD=AC=E5=8A=9E=E5=8A=A0=E5=8F=82=E6=95=B0?= =?UTF-8?q?projectId?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/workCenter/processCenter/table/TodoList.vue | 3 ++- .../StandardConsultationProcess.vue | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/workCenter/processCenter/table/TodoList.vue b/src/views/workCenter/processCenter/table/TodoList.vue index bf35b115..e594f8ce 100644 --- a/src/views/workCenter/processCenter/table/TodoList.vue +++ b/src/views/workCenter/processCenter/table/TodoList.vue @@ -384,6 +384,7 @@ export default { userSelectChange (value) { if (value) { let func + const param = {} switch (this.currentTurnTo.prcType + '') { // 标准法规入库/变更流程 case '1': @@ -392,6 +393,7 @@ export default { // 标准征求意见流程 case '2': func = transferConsultationProcess + param.projectId = this.currentTurnTo.projectId break // 项目合规评估流程 case '3': @@ -467,7 +469,6 @@ export default { func = transferPostMeetingManage break } - const param = {} param.userId = value param.taskId = this.currentTurnTo.taskId func(param).then(res => { diff --git a/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue b/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue index ad87ebe8..9cf59951 100644 --- a/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue +++ b/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue @@ -1087,7 +1087,8 @@ export default { continueTurnTo (userId) { const params = { taskId: this.$route.query.taskId, - userId + userId, + projectId: this.$route.query.projectId } this.loading = true transferConsultationProcess(params).then(res => {