...
|
...
|
@@ -96,10 +96,18 @@ |
|
|
route: 0,
|
|
|
duration: 0,
|
|
|
}],
|
|
|
columnDefs: [{
|
|
|
orderable: false,
|
|
|
targets: [0,1,2,3, 4]
|
|
|
}]
|
|
|
columnDefs: [
|
|
|
{
|
|
|
render: function(data, type, row) {
|
|
|
if (!data) {
|
|
|
return '';
|
|
|
}
|
|
|
|
|
|
return moment(data).format('YYYY/MM/DD HH:MM:ss');
|
|
|
},
|
|
|
targets: 0
|
|
|
}
|
|
|
]
|
|
|
|
|
|
});
|
|
|
}
|
...
|
...
|
|