From 261c0c179556a6c2b20a6ce75025816bf90c4471 Mon Sep 17 00:00:00 2001 From: wyx Date: Wed, 15 Feb 2023 10:45:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E8=B7=B3=E8=BD=AC=E8=AF=A6=E6=83=85=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E5=8F=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/project/ProjectManage.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/project/ProjectManage.vue b/src/views/project/ProjectManage.vue index f27d49d..7454171 100644 --- a/src/views/project/ProjectManage.vue +++ b/src/views/project/ProjectManage.vue @@ -257,12 +257,12 @@ const goProjectDetails = (value) => { ? router.push({ path: "/projectdetails", - query: { projectId: value.projectId }, + query: { projectId: value.id }, }) : window.open( `${window.location.protocol + import.meta.env.VITE_BOE_PATH_DETAIL_URL}/projectdetails¶ms=${encodeURIComponent( - `projectId=${value.projectId}` + `projectId=${value.id}` ,'_top')}` ); };