From 56607173a58625d08fef149750ec4eedbbb0850f Mon Sep 17 00:00:00 2001 From: userName Date: Thu, 3 Apr 2025 17:02:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=BA=E5=91=98=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../XunChaGuiJi/XunChaPersons/index.vue | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/packages/components/XunChaGuiJi/XunChaGuiJi/XunChaPersons/index.vue b/src/packages/components/XunChaGuiJi/XunChaGuiJi/XunChaPersons/index.vue index 5830872..0694369 100644 --- a/src/packages/components/XunChaGuiJi/XunChaGuiJi/XunChaPersons/index.vue +++ b/src/packages/components/XunChaGuiJi/XunChaGuiJi/XunChaPersons/index.vue @@ -24,7 +24,7 @@ 位置 -
+
轨迹
@@ -84,6 +84,21 @@ const handlerAddEntity = (data) => { window.graphicLayer.addGraphic(graphic); window.globalMap.flyToGraphic(graphic,{radius:300}); } +const rotateLine = (data)=>{ + axios({ + method: "post", + url: VITE_GLOB_API_URL + '/api/FirePatrol/GetPatrolPointByTime', + data: { + page: 1, + limit: 9999 + }, + headers: { + 'X-Token': localStorage.getItem("X-Token") + } + }).then(res => { + + }) +} const getListData=()=>{ axios({ method: "post", @@ -101,7 +116,7 @@ const getListData=()=>{ }) } onMounted(() => { - // getListData() + getListData() })