This commit is contained in:
weiz 2023-11-29 17:45:19 +08:00
parent 616b38a6d7
commit 36a8aea0fc
1 changed files with 4 additions and 1 deletions

View File

@ -113,7 +113,10 @@
if(empty($params['plant_id']) || empty($params['type'])){
return $this->fail('缺少必要参数');
}
$data = Action::where('plant_id',$params['plant_id'])->where('type',$params['type'])->select()->toArray();
$data = Action::where('plant_id',$params['plant_id'])->where('type',$params['type'])->select()->each(function($item){
$item['detail'] = json_decode($item['detail'],true);
return $item;
})->toArray();
return $this->success('请求成功',$data);
}
}