chuweiqiang 11 月之前
父节点
当前提交
0209fa2772
共有 1 个文件被更改,包括 1 次插入2 次删除
  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;