Compare commits

..

2 Commits

Author SHA1 Message Date
weiz 650ff4d5ba update 2023-12-04 15:02:34 +08:00
weiz 19363319cf Merge pull request 'update' (#37) from zhangwei into dev
Reviewed-on: #37
2023-12-04 11:58:23 +08:00
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);