This commit is contained in:
彭桃 2023-03-30 10:27:06 +08:00
parent 47812418b8
commit ad42e3f1c5

View File

@ -647,9 +647,27 @@ class Maintainentry extends BaseController
$find=Db::table('fa_category')->where('id',$res['nature_of_land'])->find();
$res['nature_of_land_id']=$res['nature_of_land'];
$res['nature_of_land']=$find['name'];
$res['tools_msg'] = $res['tools_msg'] ? json_decode($res['tools_msg'], 1):[];
$res['crops_msg'] = $res['crops_msg'] ? json_decode($res['crops_msg'], 1):[];
$res['breed_msg'] = $res['breed_msg'] ? json_decode($res['breed_msg'], 1):[];
$ids1 = Db::table('cms_planting_type')->where('pid',1)->column('id') ??[];
$result1 = Db::table('cms_planting_information')->where($where)->whereIn('type_id',$ids1)->limit(3)->order('id desc')->field('id,type_id')
->withAttr('name', function ($val,$data) {
return Db::table('cms_planting_type')->where('id',$data['type_id'])->value('name');
})
->select()->toArray();
$ids2 = Db::table('cms_planting_type')->where('pid',2)->column('id') ??[];
$result2 = Db::table('cms_planting_information')->where($where)->whereIn('type_id',$ids2)->limit(3)->order('id desc')->field('id,type_id')
->withAttr('name', function ($val,$data) {
return Db::table('cms_planting_type')->where('id',$data['type_id'])->value('name');
})
->select()->toArray();
$ids3 = Db::table('cms_planting_type')->where('pid',3)->column('id') ??[];
$result3 = Db::table('cms_planting_information')->where($where)->whereIn('type_id',$ids3)->limit(3)->order('id desc')->field('id,type_id')
->withAttr('name', function ($val,$data) {
return Db::table('cms_planting_type')->where('id',$data['type_id'])->value('name');
})
->select()->toArray();
$res['tools_msg'] = $result1;
$res['crops_msg'] = $result2;
$res['breed_msg'] = $result3;
$this->apiSuccess('获取成功', $res, 1);
} else {
$this->apiError('暂无数据');