王新凯 3 years ago
parent
commit
d211651c59
1 changed files with 5 additions and 2 deletions
  1. 5 2
      application/api/controller/Index.php

+ 5 - 2
application/api/controller/Index.php

@@ -134,7 +134,10 @@ class Index extends Api
             }
         }
 
-        $where[]=['type','=',input('type')];
+        if(isset($_GET['type'])){
+            $where[]=['type','=',input('type')];
+
+        }
 
 
         //车龄
@@ -186,7 +189,7 @@ class Index extends Api
 
 
 
-        dump($where);die();die();
+
 
         $list=Db::table('p_car')->where('is_deleted',0)
             ->where($where)