|
|
@@ -274,6 +274,15 @@ class OrderList extends \common\libs\dataList\DataList implements DataListInterf
|
|
|
},
|
|
|
'headerOther' => ['width' => '190'],
|
|
|
],
|
|
|
+ 'SEND_AT' => [
|
|
|
+ 'header' => '推送时间',
|
|
|
+ 'value' => function ($row) {
|
|
|
+ return (new DateTime([
|
|
|
+ 'value' => $row['SEND_AT'],
|
|
|
+ ]))->result();
|
|
|
+ },
|
|
|
+ 'headerOther' => ['width' => '190'],
|
|
|
+ ],
|
|
|
'DELIVERY_AT' => [
|
|
|
'header' => '发货时间',
|
|
|
'value' => function ($row) {
|