From 7ebbe9c130b9c776967437c69b42f0753b06f021 Mon Sep 17 00:00:00 2001 From: sunFlower <787203167@qq.com> Date: Fri, 21 Oct 2022 17:41:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E9=A1=B9=E7=9B=AE=E5=BA=93?= =?UTF-8?q?=E5=98=9A=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../projectManagement/components/ParameterCollectionEchart.vue | 2 +- .../components/certificationProgressEchart.vue | 2 +- .../components/currentStatusOfTheProjectEcharts.vue | 2 +- .../projectManagement/components/deliverableStatusEchart.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/jero-web/src/views/projectManagement/components/ParameterCollectionEchart.vue b/jero-web/src/views/projectManagement/components/ParameterCollectionEchart.vue index 0f9c8b4f0..13c144e6e 100644 --- a/jero-web/src/views/projectManagement/components/ParameterCollectionEchart.vue +++ b/jero-web/src/views/projectManagement/components/ParameterCollectionEchart.vue @@ -107,7 +107,7 @@ getoptions(){ let id = '' if (this.idList && this.idList.length > 0) { - id = this.$route.query.id +','+this.idList.join(',') + id = this.idList.join(',') } else { id = this.$route.query.id } diff --git a/jero-web/src/views/projectManagement/components/certificationProgressEchart.vue b/jero-web/src/views/projectManagement/components/certificationProgressEchart.vue index 11dd6a7b4..2c1ca87c2 100644 --- a/jero-web/src/views/projectManagement/components/certificationProgressEchart.vue +++ b/jero-web/src/views/projectManagement/components/certificationProgressEchart.vue @@ -87,7 +87,7 @@ getData() { let id = '' if (this.idList && this.idList.length > 0) { - id = this.$route.query.id +','+this.idList.join(',') + id = this.idList.join(',') } else { id = this.$route.query.id } diff --git a/jero-web/src/views/projectManagement/components/currentStatusOfTheProjectEcharts.vue b/jero-web/src/views/projectManagement/components/currentStatusOfTheProjectEcharts.vue index eeec2b24d..0aaf99097 100644 --- a/jero-web/src/views/projectManagement/components/currentStatusOfTheProjectEcharts.vue +++ b/jero-web/src/views/projectManagement/components/currentStatusOfTheProjectEcharts.vue @@ -85,7 +85,7 @@ getData() { let id = '' if (this.idList && this.idList.length > 0) { - id = this.$route.query.id +','+this.idList.join(',') + id = this.idList.join(',') } else { id = this.$route.query.id } diff --git a/jero-web/src/views/projectManagement/components/deliverableStatusEchart.vue b/jero-web/src/views/projectManagement/components/deliverableStatusEchart.vue index 1e74c0818..f0498d93d 100644 --- a/jero-web/src/views/projectManagement/components/deliverableStatusEchart.vue +++ b/jero-web/src/views/projectManagement/components/deliverableStatusEchart.vue @@ -60,7 +60,7 @@ getData() { let id = '' if (this.idList && this.idList.length > 0) { - id = this.$route.query.id +','+this.idList.join(',') + id = this.idList.join(',') } else { id = this.$route.query.id }