This commit is contained in:
unknown 2023-10-14 17:54:24 +08:00
parent 504587ebaa
commit 2b7229069a
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ class SuYuanController extends BaseAdminController
return $this->fail('参数错误');
}
$data = Db::name('environmental_data')->where('id',$params['id'])->where('flag',$params['flag'])->order('id desc')->findOrEmpty();
if($data->isEmpty()){
if(empty($data)){
return $this->success('请求成功',[]);
}
$content = Db::name('production_base')->where('id',$data['production_base_id'])->field('content')->findOrEmpty();