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

Loading…
Cancel
Save