From b602a446eeee7c39902e2e87f65496f0140c0e70 Mon Sep 17 00:00:00 2001 From: Vce Date: Thu, 28 Mar 2024 09:48:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E5=AE=89=E5=85=A8?= =?UTF-8?q?=E5=B8=BD=E5=9B=B4=E6=A0=8F=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/modules/smartSafeHat.ts | 4 ++++ src/routers/modules/staticRouter.ts | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/api/modules/smartSafeHat.ts b/src/api/modules/smartSafeHat.ts index 8ae84d5..ceb984e 100644 --- a/src/api/modules/smartSafeHat.ts +++ b/src/api/modules/smartSafeHat.ts @@ -41,4 +41,8 @@ export const deleteSafehatFence = (params: {}) => { // 智能安全帽--添加围栏 export const addSafeHatPositionFence = (params: {}) => { return http.post(BASEURL + `/xmgl/safetyHatFence/add`, params); +}; +// 智能安全帽--查询围栏内人员信息 +export const getFencePersonApi = (params: {}) => { + return http.get(BASEURL + `/xmgl/safetyHatFence/list`, params); }; \ No newline at end of file diff --git a/src/routers/modules/staticRouter.ts b/src/routers/modules/staticRouter.ts index 1e69b1f..11cd55b 100644 --- a/src/routers/modules/staticRouter.ts +++ b/src/routers/modules/staticRouter.ts @@ -263,7 +263,8 @@ export const staticRouter: RouteRecordRaw[] = [ path: "/smartSafeHat", name: "智能安全帽", component: () => import("@/views/sevenLargeScreen/digitalConstruction/smartSafeHat/index.vue") - } + }, + ], meta: { title: "数字化项目监管平台"