From 50645e2de70c2e81859dcd42d214387897b884ca Mon Sep 17 00:00:00 2001 From: sanguu516 Date: Wed, 5 Jun 2024 17:46:01 +0900 Subject: [PATCH] =?UTF-8?q?=ED=85=8C=EC=9D=B4=EB=B8=94=20=ED=97=A4?= =?UTF-8?q?=EB=8D=94=20=EB=91=90=EC=A4=84=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/flight/FlightApprovalsTable.js | 58 ++++++++++++++++--- 1 file changed, 49 insertions(+), 9 deletions(-) diff --git a/src/components/flight/FlightApprovalsTable.js b/src/components/flight/FlightApprovalsTable.js index f70a49ee..6fd43521 100644 --- a/src/components/flight/FlightApprovalsTable.js +++ b/src/components/flight/FlightApprovalsTable.js @@ -60,7 +60,13 @@ export default function FlightApprovalsTable(props) { const columns = [ { - name: '신청번호', + name: ( +
+ 신청 +
+ 번호 +
+ ), selector: row => row.applyNo, center: true, cell: row => { @@ -68,7 +74,13 @@ export default function FlightApprovalsTable(props) { } }, { - name: '신청일자', + name: ( +
+ 신청 +
+ 일자 +
+ ), selector: row => row.applyDt, center: true, cell: row => { @@ -76,7 +88,13 @@ export default function FlightApprovalsTable(props) { } }, { - name: '비행구역', + name: ( +
+ 비행 +
+ 구역 +
+ ), selector: row => row.areaList[0].zoneNo, center: true, sortable: true, @@ -86,7 +104,13 @@ export default function FlightApprovalsTable(props) { } }, { - name: '중심좌표(위도/경도)', + name: ( +
+ 중심좌표 +
+ (위도/경도) +
+ ), selector: row => row.areaList[0].lat, center: true, width: '180px', @@ -98,7 +122,13 @@ export default function FlightApprovalsTable(props) { } }, { - name: '반경(m)', + name: ( +
+ 반경 +
+ (m) +
+ ), selector: row => row.areaList[0].bufferZone, center: true, sortable: true, @@ -107,7 +137,13 @@ export default function FlightApprovalsTable(props) { } }, { - name: '고도(m)', + name: ( +
+ 고도 +
+ (m) +
+ ), selector: row => row.areaList[0].fltElev, center: true, @@ -117,7 +153,13 @@ export default function FlightApprovalsTable(props) { } }, { - name: '검토결과', + name: ( +
+ 검토 +
+ 결과 +
+ ), selector: row => row.areaList[0].approvalCd, center: true, @@ -130,7 +172,6 @@ export default function FlightApprovalsTable(props) { : '미승인'; } }, - { name: '더보기', selector: row => row.areaList, @@ -353,7 +394,6 @@ export default function FlightApprovalsTable(props) { data={laancAprvList} columns={columns} pagination={true} - // customStyles={customStyles} conditionalRowStyles={conditionalRowStyles} FlightInfoComponent={FlightInfoComponent} handleRowClick={handleRowClick}