market_draw_1219

This commit is contained in:
dengbw
2022-12-19 10:30:47 +08:00
parent e5b692963d
commit 089588d819
+2 -2
View File
@@ -46,8 +46,8 @@ class Members extends BaseController
if ($keywords) {
$where["(uname LIKE '%{$keywords}%' OR mobile LIKE '%{$keywords}%' OR nickname LIKE '%{$keywords}%')"] = null;
} else {
$uname && $where["uname LIKE '%{$uname}%'"] = $uname;
$mobile && $where["mobile LIKE '%{$mobile}%'"] = $mobile;
$uname && $where["uname LIKE '%{$uname}%'"] = null;
$mobile && $where["mobile LIKE '%{$mobile}%'"] = null;
}
$count = $this->mdSyliveUser->count($where);
if ($count) {