diff --git a/app/api/controller/VehicleController.php b/app/api/controller/VehicleController.php
index 73fd8e2d6..a72715903 100644
--- a/app/api/controller/VehicleController.php
+++ b/app/api/controller/VehicleController.php
@@ -376,11 +376,14 @@ class VehicleController extends BaseApiController
             return $this->fail('非小组公司不能访问');
         }
         //获取申请信息
-        $vehicleContract = VehicleContract::where('company_b_id',$company['id'])->where('type','<>',2)->order('id desc')->find();
+        $vehicleContract = VehicleContract::where('company_b_id',$company['id'])->order('id desc')->find();
         if(empty($vehicleContract)){
             return $this->success('没有数据,请申请',['status'=>-1]);
         }
-        if($vehicleContract['status'] == 2){
+        if($vehicleContract['type'] == 2){
+            return $this->success('合同已解除',['status'=>-1]);
+        }
+        if($vehicleContract['status'] == 3){
             if(!empty($vehicleContract['cars_info'])){
                 $vehicleContract['cars_info'] = json_decode($vehicleContract['cars_info'],true);
                 if(!empty($vehicleContract['cars_info'])){