From 3ad9f77b93b29ea1061f95584b2d16e81606db3e Mon Sep 17 00:00:00 2001 From: "zyx.net" Date: Thu, 28 Sep 2023 17:33:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E4=BB=B6=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=BA=93=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/certificationList/index.vue | 7 ++++++- .../components/projectInformation.vue | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/jero-web/src/views/projectManagement/components/certificationList/index.vue b/jero-web/src/views/projectManagement/components/certificationList/index.vue index 80400b7d4..bb101e315 100644 --- a/jero-web/src/views/projectManagement/components/certificationList/index.vue +++ b/jero-web/src/views/projectManagement/components/certificationList/index.vue @@ -1207,7 +1207,12 @@ for (let i = 0; i < this.selectedRowKeysList.length; i++) { if (this.selectedRowKeysList[i].flowStatus == 'List to be released' || this.selectedRowKeysList[i].flowStatus == 'Review and pass') { - ids.push(this.selectedRowKeysList[i].id) + if (this.selectedRowKeysList[i].projectCertificationInventoryEOS && (this.selectedRowKeysList[i].projectCertificationInventoryEOS.length > 0 || this.selectedRowKeysList[i].projectCertificationInventoryEOS !== null)) { + this.failedMessage(this.selectedRowKeysList[i].serialNumber + this.$t('platformitemhasbeenassociated') ) + return + }else{ + ids.push(this.selectedRowKeysList[i].id) + } } else { notConditions.push(this.selectedRowKeysList[i].inspectionItem) } diff --git a/jero-web/src/views/toDoCenter/projectRegulationTasks/components/projectInformation.vue b/jero-web/src/views/toDoCenter/projectRegulationTasks/components/projectInformation.vue index e88c17ea3..d7920faa6 100644 --- a/jero-web/src/views/toDoCenter/projectRegulationTasks/components/projectInformation.vue +++ b/jero-web/src/views/toDoCenter/projectRegulationTasks/components/projectInformation.vue @@ -109,7 +109,7 @@ let newUrl = this.$router.resolve({ path: '/platformItemLibraryDetails', query: { - id: item.projectLibraryId, + id: item.id, projectName: item.projectName+'-'+item.projectVersion, projectNameId: item.projectName, targetMarket: item.targetMarket,