From eb3a9088efa25973d34da31f26b800a770dff738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kimjh=28=EA=B9=80=EC=9E=A5=ED=98=84=29?= Date: Mon, 15 May 2023 20:07:22 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B9=84=ED=96=89=20=EB=A6=AC=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=98=81=EC=83=81=20=EB=B2=84=ED=8A=BC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/control/report/ControlReportList.js | 27 ++++++++++++------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/src/views/control/report/ControlReportList.js b/src/views/control/report/ControlReportList.js index ffbe173..4e7e6ae 100644 --- a/src/views/control/report/ControlReportList.js +++ b/src/views/control/report/ControlReportList.js @@ -61,21 +61,17 @@ const ControlReportList = props => { {controlGpList?.map(item => { if (item.objectId && item.objectId.indexOf(filterId) != -1) { return ( -
handlerDetail(item)} - key={item.objectId} - > +
-
+
handlerDetail(item)}>
식별번호
{item.objectId}
-
+
handlerDetail(item)}>
이륙 위치
-
-
+
handlerDetail(item)}>
이륙 시간
{item.controlStartDt @@ -85,7 +81,7 @@ const ControlReportList = props => { : '-'}
-
+
handlerDetail(item)}>
속도(고도)
{item.speed ? item.speed : '-'}{' '} @@ -94,12 +90,23 @@ const ControlReportList = props => { {item.elev ? item.elevType : ''})
-
+
handlerDetail(item)}>
상태
{item.dronStatus ? item.dronStatus : '-'}
+
+ +
);