Browse Source

비행계획서 일련번호 추가(laanc 승인 신청 목록)

pull/2/head
김장현 11 months ago
parent
commit
a6d393c881
  1. 13
      src/components/laanc/LaancGrid.js

13
src/components/laanc/LaancGrid.js

@ -42,10 +42,19 @@ function LaancGrid() {
}; };
const columns = [ const columns = [
{
name: '비행계획서 일련 번호',
selector: row => row.planSno,
minWidth: '170px',
sortable: true,
cell: row => {
return row.planSno;
}
},
{ {
name: '조종사 성명', name: '조종사 성명',
selector: row => row.memberName, selector: row => row.memberName,
minWidth: '150px', minWidth: '130px',
sortable: true, sortable: true,
cell: row => { cell: row => {
return row.memberName; return row.memberName;
@ -55,7 +64,7 @@ function LaancGrid() {
{ {
name: '비행시작일시', name: '비행시작일시',
selector: row => row.schFltStDt, selector: row => row.schFltStDt,
minWidth: '150px', minWidth: '170px',
sortable: true, sortable: true,
cell: row => { cell: row => {
return moment(row.schFltStDt).format('YYYY-MM-DD HH:mm'); return moment(row.schFltStDt).format('YYYY-MM-DD HH:mm');

Loading…
Cancel
Save