Browse Source

LAANC 승인목록 센터정렬

pull/2/head
kyw546 11 months ago
parent
commit
4fcd3faaee
  1. 5
      src/components/laanc/LaancGrid.js

5
src/components/laanc/LaancGrid.js

@ -47,6 +47,7 @@ function LaancGrid() {
selector: row => row.planSno, selector: row => row.planSno,
minWidth: '170px', minWidth: '170px',
sortable: true, sortable: true,
center: true,
cell: row => { cell: row => {
return row.planSno; return row.planSno;
} }
@ -66,6 +67,7 @@ function LaancGrid() {
selector: row => row.schFltStDt, selector: row => row.schFltStDt,
minWidth: '160px', minWidth: '160px',
sortable: true, sortable: true,
center: 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');
} }
@ -76,6 +78,7 @@ function LaancGrid() {
selector: row => row.schFltEndDt, selector: row => row.schFltEndDt,
minWidth: '160px', minWidth: '160px',
sortable: true, sortable: true,
center: true,
cell: row => { cell: row => {
return moment(row.schFltEndDt).format('YYYY-MM-DD HH:mm'); return moment(row.schFltEndDt).format('YYYY-MM-DD HH:mm');
} }
@ -86,6 +89,7 @@ function LaancGrid() {
selector: row => row.aprvlYn, selector: row => row.aprvlYn,
minWidth: '110px', minWidth: '110px',
sortable: true, sortable: true,
center: true,
cell: row => { cell: row => {
return row.aprvlYn; return row.aprvlYn;
} }
@ -95,6 +99,7 @@ function LaancGrid() {
selector: row => row.arcrftWght, selector: row => row.arcrftWght,
minWidth: '260px', minWidth: '260px',
sortable: true, sortable: true,
center: true,
cell: row => { cell: row => {
return row.arcrftWght; return row.arcrftWght;
} }

Loading…
Cancel
Save