This commit is contained in:
weiz 2023-12-04 15:02:34 +08:00
parent 19363319cf
commit 650ff4d5ba
1 changed files with 0 additions and 2 deletions

View File

@ -121,8 +121,6 @@
}
$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);
$item['create_time'] = date('Y-m-d H:i:s',$item['create_time']);
$item['update_time'] = date('Y-m-d H:i:s',$item['update_time']);
return $item;
})->toArray();
return $this->success('请求成功',$data);