diff --git a/src/views/workCenter/standardConsultation/StandardConsultationProcess.vue b/src/views/workCenter/standardConsultation/StandardConsultationProcess.vue index db9f24c..aab52ee 100644 --- a/src/views/workCenter/standardConsultation/StandardConsultationProcess.vue +++ b/src/views/workCenter/standardConsultation/StandardConsultationProcess.vue @@ -450,7 +450,8 @@ export default { this.loading = true const params = { taskId: this.$route.query.taskId, - processInstanceId: this.$route.query.processInstanceId + processInstanceId: this.$route.query.processInstanceId, + projectId: this.$route.query.projectId } queryConsultationProcessDetail(params).then(res => { if (res.success) { diff --git a/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue b/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue index be69801..e16d9ce 100644 --- a/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue +++ b/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue @@ -170,8 +170,8 @@ export default { */ initProcessData () { this.loading = true - const { processInstanceId, taskId } = this.$route.query - queryStandardECProcessData({ processInstanceId, taskId }).then(async res => { + const { processInstanceId, taskId, projectId } = this.$route.query + queryStandardECProcessData({ processInstanceId, taskId, projectId }).then(async res => { if (res.success) { const { result = {} } = res this.processInfo = Object.assign({}, result.basicProcessInfoDTO) diff --git a/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue b/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue index 609aec9..bd10165 100644 --- a/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue +++ b/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue @@ -190,7 +190,8 @@ export default { const params = { processInstanceId: this.$route.query.processInstanceId, draftId: this.$route.query.draftId, - taskId: this.$route.query.taskId + taskId: this.$route.query.taskId, + projectId: this.$route.query.projectId } queryProcurementProcessInfo(params).then(res => { if (res.success) { @@ -344,4 +345,4 @@ export default { .export-btn { margin: 0 0.32rem; } - \ No newline at end of file +