chuweiqiang 11 mesi fa
parent
commit
0209fa2772
1 ha cambiato i file con 1 aggiunte e 2 eliminazioni
  1. 1 2
      application/api/controller/Books.php

+ 1 - 2
application/api/controller/Books.php

@@ -112,8 +112,7 @@ class Books extends Api
         }
         //关键字
         if ( isset($data['keywords']) && $data['keywords'] != '' && $data['keywords'] != null){
-            $where['title'] = ['like','%'.$data['keywords'].'%'];
-            $where['author'] = ['like','%'.$data['keywords'].'%'];
+            $where['author|title'] = ['like','%'.$data['keywords'].'%'];
         }
 
         $where['is_deleted'] = 1;