Merge pull request '租赁详情传值修复' (#91) from zhangwei into dev
Reviewed-on: #91
This commit is contained in:
commit
836accce57
@ -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('数据不存在');
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user