diff --git a/app/api/controller/ActionController.php b/app/api/controller/ActionController.php index 56aa407b..f66fc912 100644 --- a/app/api/controller/ActionController.php +++ b/app/api/controller/ActionController.php @@ -113,7 +113,7 @@ if(empty($params['plant_id']) || empty($params['type'])){ return $this->fail('缺少必要参数'); } - $data = Action::where('plant_id',$params['plant_id'])->where('type',$params['type'])->select()->each(function($item){ + $data = Action::where('plant_id',$params['plant_id'])->where('type',$params['type'])->order('create_time desc')->select()->each(function($item){ $item['detail'] = json_decode($item['detail'],true); return $item; })->toArray();