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)