modified 优化筛选功能

This commit is contained in:
zhaoxiang 2019-06-22 18:42:03 +08:00
parent 2e60c0db88
commit cafce4f630

View File

@ -35,7 +35,7 @@ class Auth extends Base {
$obj = $obj->where('status', $status);
}
if ($keywords) {
$obj = $obj->where('name', 'like', $keywords);
$obj = $obj->whereLike('name', "%{$keywords}%");
}
$listObj = $obj->order('id DESC')->paginate($limit, false, ['page' => $start])->toArray();