From 1637416b25aff378bf987ebe9e4100db1ccd0ae2 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Wed, 17 Jul 2024 18:22:33 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E5=8A=A0=E7=AD=BE=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?prcType?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../marketListReleaseProcess/MarketListReleaseProcess.vue | 1 + .../NewRegulationIntroductionProcess.vue | 1 + src/views/workCenter/processCenter/table/TodoList.vue | 1 + .../RegulatoryComplianceCheckProcess.vue | 1 + 4 files changed, 4 insertions(+) diff --git a/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue b/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue index 2f5ed81..e8dc268 100644 --- a/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue +++ b/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue @@ -548,6 +548,7 @@ export default { const param = {} param.userId = userIds param.taskId = this.$route.query.taskId + param.prcType = this.$route.query.prcType processAddSign(param).then(res => { if (res.success) { this.$message.success(res.message) diff --git a/src/views/workCenter/newRegulationIntroductionProcess/NewRegulationIntroductionProcess.vue b/src/views/workCenter/newRegulationIntroductionProcess/NewRegulationIntroductionProcess.vue index c367b42..375c9a4 100644 --- a/src/views/workCenter/newRegulationIntroductionProcess/NewRegulationIntroductionProcess.vue +++ b/src/views/workCenter/newRegulationIntroductionProcess/NewRegulationIntroductionProcess.vue @@ -467,6 +467,7 @@ export default { const param = {} param.userId = userIds param.taskId = this.$route.query.taskId + param.prcType = this.$route.query.prcType processAddSign(param).then(res => { if (res.success) { this.$message.success(res.message) diff --git a/src/views/workCenter/processCenter/table/TodoList.vue b/src/views/workCenter/processCenter/table/TodoList.vue index 09a96af..461ea17 100644 --- a/src/views/workCenter/processCenter/table/TodoList.vue +++ b/src/views/workCenter/processCenter/table/TodoList.vue @@ -250,6 +250,7 @@ export default { query.taskId = record.taskId // 任务id query.processInstanceId = record.processInstanceId // 流程实例id,必须传人员信息右侧表格查询需要用 query.nodeId = record.nodeId // 节点的id + query.prcType = record.prcType // 流程类型,加签需要传 this.$router.push({ path: path, query: query diff --git a/src/views/workCenter/regulatoryComplianceCheckProcess/RegulatoryComplianceCheckProcess.vue b/src/views/workCenter/regulatoryComplianceCheckProcess/RegulatoryComplianceCheckProcess.vue index f843953..9f5f0da 100644 --- a/src/views/workCenter/regulatoryComplianceCheckProcess/RegulatoryComplianceCheckProcess.vue +++ b/src/views/workCenter/regulatoryComplianceCheckProcess/RegulatoryComplianceCheckProcess.vue @@ -578,6 +578,7 @@ export default { const param = {} param.userId = userIds param.taskId = this.$route.query.taskId + param.prcType = this.$route.query.prcType processAddSign(param).then(res => { if (res.success) { this.$message.success(res.message)