作者 邓超

x

@@ -2,3 +2,4 @@ @@ -2,3 +2,4 @@
2 composer.lock 2 composer.lock
3 vendor 3 vendor
4 config.php 4 config.php
  5 +public/temp
@@ -33,7 +33,9 @@ class Job extends Base { @@ -33,7 +33,9 @@ class Job extends Base {
33 33
34 $lists = db()->all(sendJobsSql::all($where,$page,$limit)); 34 $lists = db()->all(sendJobsSql::all($where,$page,$limit));
35 35
36 - 36 + foreach ($lists as &$list){
  37 + $list['create_at'] = date('Y-m-d H:i:s',$list['send_time']);
  38 + }
37 39
38 return listsPage($lists, 40 return listsPage($lists,
39 db()->count(sendJobsSql::count($where)) 41 db()->count(sendJobsSql::count($where))