From f6fb1e6e94f4ad5350fe68f230170debf3eee91d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Fri, 12 May 2023 15:51:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9UAT=E6=8F=90=E5=87=BA?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProjectDetails/index.vue | 6 + .../components/responsibilityList.vue | 175 ++++++++++ .../components/statistics.vue | 305 ++++++++---------- .../projectStatusBoard/index.vue | 22 +- 4 files changed, 333 insertions(+), 175 deletions(-) create mode 100644 jero-web/src/views/projectManagement/projectStatusBoard/components/responsibilityList.vue diff --git a/jero-web/src/views/projectManagement/ProjectDetails/index.vue b/jero-web/src/views/projectManagement/ProjectDetails/index.vue index 72e5bb2bd..17425e6c6 100644 --- a/jero-web/src/views/projectManagement/ProjectDetails/index.vue +++ b/jero-web/src/views/projectManagement/ProjectDetails/index.vue @@ -270,6 +270,9 @@ this.textColor(this.$t('projectDetails')) this.textTitle = this.$t('projectDetails') } else if (this.$route.query.type == '102') { + if (this.$route.query.dutyTerritoryName){ + this.areaOfResponsibilityList = this.$route.query + } this.textColor(this.$t('listOfRegulations')) this.textTitle = this.$t('listOfRegulations') } else if (this.$route.query.type == '103') { @@ -285,6 +288,9 @@ this.textColor(this.$t('TaskParameterCollection')) this.textTitle = this.$t('TaskParameterCollection') } else if (this.$route.query.type == '106') { + if (this.$route.query.dutyTerritoryName){ + this.areaOfResponsibility = this.$route.query + } this.textColor(this.$t('certificationList')) this.textTitle = this.$t('certificationList') } diff --git a/jero-web/src/views/projectManagement/projectStatusBoard/components/responsibilityList.vue b/jero-web/src/views/projectManagement/projectStatusBoard/components/responsibilityList.vue new file mode 100644 index 000000000..9be0759ff --- /dev/null +++ b/jero-web/src/views/projectManagement/projectStatusBoard/components/responsibilityList.vue @@ -0,0 +1,175 @@ + + + + + \ No newline at end of file diff --git a/jero-web/src/views/projectManagement/projectStatusBoard/components/statistics.vue b/jero-web/src/views/projectManagement/projectStatusBoard/components/statistics.vue index 63a565a4d..5e7b3c5ec 100644 --- a/jero-web/src/views/projectManagement/projectStatusBoard/components/statistics.vue +++ b/jero-web/src/views/projectManagement/projectStatusBoard/components/statistics.vue @@ -1,108 +1,116 @@