From 5a2b17dea251779f040759aa8cb6c796a0ca50a7 Mon Sep 17 00:00:00 2001 From: ljx <15723110242@139.com> Date: Fri, 12 Sep 2025 22:33:25 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../digitalizationScreen/components/centerPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/enterpriseLarge/digitalizationScreen/components/centerPage.vue b/src/views/enterpriseLarge/digitalizationScreen/components/centerPage.vue index aa2337e..744eaf3 100644 --- a/src/views/enterpriseLarge/digitalizationScreen/components/centerPage.vue +++ b/src/views/enterpriseLarge/digitalizationScreen/components/centerPage.vue @@ -213,7 +213,7 @@ const initEcharts = () => { }); }; const navigateToProjectDetail = (data) => { - window.open('http://localhost:7788/ProjectScreen?projectId=' + data.id + '&projectName=' + data.name, '_blank'); + window.open('http://xny.yj-3d.com:7788/ProjectScreen?projectId=' + data.id + '&projectName=' + data.name, '_blank'); //xny.yj-3d.com }; const risk_level_type1 = ref([]); From 010d3d8c3c2356bbab24e86140c87bfc2d69c924 Mon Sep 17 00:00:00 2001 From: ljx <15723110242@139.com> Date: Fri, 12 Sep 2025 22:38:25 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/projectScreen/index.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/api/projectScreen/index.ts b/src/api/projectScreen/index.ts index e790c62..4183cb2 100644 --- a/src/api/projectScreen/index.ts +++ b/src/api/projectScreen/index.ts @@ -52,11 +52,11 @@ export const getScreenPeople = (projectId: number | string) => { // 查询项目AI安全巡检 export const getScreenSafetyInspection = (projectId: number | string) => { return request({ - url: '/project/big/screen/safetyInspection/', - method: 'get', - params: { - projectId - } + url: '/project/big/screen/safetyInspection/' + projectId, + method: 'get' + // params: { + // projectId + // } }); };