|
@@ -47,12 +47,15 @@ class UserInfo extends BaseController
|
|
|
}
|
|
|
$page = isset($post['page']) && $post['page'] !== "" ? intval($post['page']) : 1;
|
|
|
$size = isset($post['size']) && $post['size'] !== "" ? intval($post['size']) : 10;
|
|
|
- $count = Db::name("account")->alias("a")
|
|
|
+ $count = Db::name("account")
|
|
|
+ ->alias("a")
|
|
|
->leftJoin("user b", "a.id=b.account_id and b.status=1")
|
|
|
- ->where($condition)->count();
|
|
|
+ ->where($condition)
|
|
|
+ ->count('a.id');
|
|
|
$total = intval(ceil($count / $size));
|
|
|
$page = $total >= $page ? $page : $total;
|
|
|
- $list = Db::name("account")->alias("a")
|
|
|
+ $list = Db::name("account")
|
|
|
+ ->alias("a")
|
|
|
->leftJoin("user b", "a.id=b.account_id and b.status=1")
|
|
|
->append(['plat', 'company_relaton'])
|
|
|
// ->withAttr('plat', function ($val, $da) {
|
|
@@ -72,7 +75,7 @@ class UserInfo extends BaseController
|
|
|
->toArray();
|
|
|
})
|
|
|
->where($condition)->page($page, $size)->order("a.id desc")
|
|
|
- ->field("a.id,a.username,a.mobile,a.source,a.status,b.nickname,b.sex,b.email,a.addtime,a.updatetime")
|
|
|
+ ->field("a.id,a.username,a.mobile,a.source,a.status,b.nickname,b.sex,b.email,a.addtime,a.updatetime,a.level")
|
|
|
->select()->toArray();
|
|
|
|
|
|
return json_show(0, "获取成功", ["list" => $list, "count" => $count]);
|