diff --git a/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue b/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue index c607ea9..3881721 100644 --- a/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue +++ b/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue @@ -587,7 +587,7 @@ export default { const param = {} param.userId = userIds param.taskId = this.$route.query.taskId - param.prcType = this.$route.query.prcType + param.prcType = ProcessType.MARKET_LIST_RELEASE.value 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 aba17a5..b8fbfb4 100644 --- a/src/views/workCenter/newRegulationIntroductionProcess/NewRegulationIntroductionProcess.vue +++ b/src/views/workCenter/newRegulationIntroductionProcess/NewRegulationIntroductionProcess.vue @@ -472,7 +472,7 @@ export default { const param = {} param.userId = userIds param.taskId = this.$route.query.taskId - param.prcType = this.$route.query.prcType + param.prcType = ProcessType.NEW_REGULATIONS_IMPORT.value processAddSign(param).then(res => { if (res.success) { this.$message.success(res.message) diff --git a/src/views/workCenter/regulatoryComplianceCheckProcess/RegulatoryComplianceCheckProcess.vue b/src/views/workCenter/regulatoryComplianceCheckProcess/RegulatoryComplianceCheckProcess.vue index befa302..961acb5 100644 --- a/src/views/workCenter/regulatoryComplianceCheckProcess/RegulatoryComplianceCheckProcess.vue +++ b/src/views/workCenter/regulatoryComplianceCheckProcess/RegulatoryComplianceCheckProcess.vue @@ -616,7 +616,7 @@ export default { const param = {} param.userId = userIds param.taskId = this.$route.query.taskId - param.prcType = this.$route.query.prcType + param.prcType = ProcessType.REGULATORY_COMPLIANCE_CHECK.value processAddSign(param).then(res => { if (res.success) { this.$message.success(res.message)