@@ -64,6 +64,11 @@ class IndexList extends \common\libs\dataList\DataList implements DataListInterf
'SORT' => null,
'CREATED_AT' => [
'header' => Yii::t('ctx', 'createTime'),
+ 'value' => function($row) {
+ return (new DateTime([
+ 'value' => $row['CREATED_AT'],
+ ]))->result();
+ },
'headerOther' => ['width' => '180'],
],
];