Compare commits

..

No commits in common. "628b5ee2e4dd33e98c58b644110af413ec1b82a1" and "56f5d9f570d0df2abbd77de759b13aecabe2f7ce" have entirely different histories.

2 changed files with 4 additions and 21 deletions

View File

@ -99,18 +99,10 @@
if(empty($params['plant_id'])){
return $this->fail('缺少必要参数');
}
$data = Db::query("SELECT * FROM zzsy_land_plant_action WHERE id IN (SELECT max( id ) FROM zzsy_land_plant_action WHERE plant_id = {$params['plant_id']} GROUP BY type)");
return $this->success('请求成功',$data);
}
//单一操作列表
public function listForType(): Json
{
$params = $this->request->get(['plant_id','type']);
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'])->order('create_time asc')->select()->each(function($item){
$item['detail'] = json_decode($item['detail'],true);
return $item;
})->toArray();
return $this->success('请求成功',$data);
}
}

View File

@ -48,15 +48,6 @@
if($data->isEmpty()){
return $this->fail('土地信息不存在');
}
if($data['user_id'] != $this->userId){
return $this->fail('土地信息与用户信息不匹配');
}
$landProduct = LandProduct::where('land_id',$params['land_id'])->findOrEmpty();
if($landProduct->isEmpty()){
$data['is_bind_product'] = 0;
}else{
$data['is_bind_product'] = 1;
}
$data['pic'] = json_decode($data['pic'],true);
return $this->success('请求成功',$data->toArray());
}