Merge pull request '租赁详情传值修复' (#91) from zhangwei into dev

Reviewed-on: #91
This commit is contained in:
weiz 2023-10-17 17:53:13 +08:00
commit 836accce57

View File

@ -434,8 +434,13 @@ class VehicleController extends BaseApiController
//车辆详情
public function vehicleInfo() {
$id = $this->request->get('car_id');
//获取数据
$data = VehicleRent::where('rent_company_id',$this->userInfo['company_id'])->where('status',2)->findOrEmpty();
if(!empty($id) && $id != 'undefined'){
$data = VehicleRent::where('id',$id)->where('status',2)->findOrEmpty();
}else{
$data = VehicleRent::where('rent_company_id',$this->userInfo['company_id'])->where('status',2)->findOrEmpty();
}
if($data->isEmpty()){
return $this->fail('数据不存在');
}