修改小组服务公司首页数据

This commit is contained in:
unknown 2023-09-08 17:20:36 +08:00
parent 1c668bfab1
commit a479ddbcea

View File

@ -419,7 +419,7 @@ class VehicleController extends BaseApiController
return $this->fail('非小组公司不能访问');
}
//获取申请信息
$vehicleContract = VehicleContract::where('company_b_id',$company['id'])->order('id desc')->findOrEmpty();
$vehicleContract = VehicleContract::where('company_b_id',$company['id'])->where('type','<>',2)->order('id desc')->findOrEmpty();
if($vehicleContract['status'] == 3){
if(!empty($vehicleContract['cars_info'])){
$vehicleContract['cars_info'] = json_decode($vehicleContract['cars_info'],true);