From 8f2ddc437f6bdde93371416b26d52cd8a84d0a6d Mon Sep 17 00:00:00 2001 From: sanguu516 Date: Wed, 14 Aug 2024 16:34:46 +0900 Subject: [PATCH] =?UTF-8?q?feat/=EC=9A=B4=ED=95=AD=EA=B3=BC=20=EA=B4=80?= =?UTF-8?q?=EC=A0=9C=EA=B3=BC=20=EB=A1=9C=EC=A7=81=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../flight/ControlApprovalsTable.js | 105 +++++++++++------- .../flight/NewFlightApprovalsReport.js | 68 +++++++----- .../flight/OperationApprovalsTable.js | 102 +++++++++-------- .../flight/OperationCheckBoxModal.js | 79 +++++++------ 4 files changed, 203 insertions(+), 151 deletions(-) diff --git a/src/components/flight/ControlApprovalsTable.js b/src/components/flight/ControlApprovalsTable.js index 7f2b8476..20fe641b 100644 --- a/src/components/flight/ControlApprovalsTable.js +++ b/src/components/flight/ControlApprovalsTable.js @@ -88,6 +88,7 @@ export default function ControlApprovalsTable(props) { dtl: record.dtl, era: record.era, rm: record.rm, + reqRadius: record.reqRadius, ...record }); setEditingKey(record.key); @@ -112,7 +113,8 @@ export default function ControlApprovalsTable(props) { fltElev: row.fltElev || '', dtl: row.dtl || '', era: row.era || '', - rm: row.rm || '' + rm: row.rm || '', + reqRadius: row.reqRadius || '' } ]) ); @@ -544,12 +546,14 @@ export default function ControlApprovalsTable(props) { width: '130px', render: (areaList, record) => areaList.length <= 1 ? ( - areaList[0].reviewedType === 'U' ? ( - '검토불필요' - ) : areaList[0].reviewedType === 'R' ? ( + areaList[0].reviewedType === 'R' ? ( '검토완료' - ) : areaList[0].reviewedType === 'W' ? ( - '검토대기' + ) : areaList[0].reviewedType === 'C' ? ( + '검토요청취소' + ) : areaList[0].reviewedType === 'Q' ? ( + '검토요청' + ) : areaList[0].reviewedType === 'A' ? ( + '검토재요청' ) : ( +