From 7be90b3fb25ace24d8ee82447fd00d43d360cc74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=97=AD=E6=99=93=E8=80=BF?= Date: Sat, 27 Feb 2021 18:29:59 +0800 Subject: [PATCH] v11.0.1 --- application/oa/logic/UserLogic.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/oa/logic/UserLogic.php b/application/oa/logic/UserLogic.php index e0afcee..95696a2 100644 --- a/application/oa/logic/UserLogic.php +++ b/application/oa/logic/UserLogic.php @@ -45,7 +45,7 @@ class UserLogic ->join('__ADMIN_STRUCTURE__ structure', 'structure.id = user.structure_id', 'LEFT') ->where($where) ->where($whereMap) - ->field('user.id,user.thumb_img,user.realname,user.post,structure.name as structure_name,user.mobile') + ->field('user.id,user.thumb_img,user.mobile,user.realname,user.post,structure.name as structure_name,user.mobile') ->page($param['page'], $param['limit']) ->select(); foreach ($list as $k => $v) { @@ -70,7 +70,7 @@ class UserLogic ->join('__ADMIN_STRUCTURE__ structure', 'structure.id = user.structure_id', 'LEFT') ->where($where) ->where($whereMap) - ->field('user.id,user.thumb_img,user.realname,user.post,structure.name as structure_name') + ->field('user.id,user.thumb_img,user.mobile,user.realname,user.post,structure.name as structure_name') ->page($param['page'], $param['limit']) ->select(); $dataCount = Db::name('admin_user')