Compare commits

...

2 Commits

Author SHA1 Message Date
weiz 3d6dd82a74 Merge pull request 'update' (#32) from zhangwei into dev
Reviewed-on: #32
2023-11-29 17:59:58 +08:00
weiz 89fdc19046 update 2023-11-29 17:59:24 +08:00
1 changed files with 1 additions and 1 deletions

View File

@ -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();