王新凯 3 年之前
父节点
当前提交
d211651c59
共有 1 个文件被更改,包括 5 次插入2 次删除
  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)