旭晓耿 5 年之前
父節點
當前提交
7be90b3fb2
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. 2
    2
      application/oa/logic/UserLogic.php

+ 2
- 2
application/oa/logic/UserLogic.php 查看文件

@@ -45,7 +45,7 @@ class UserLogic
45 45
                         ->join('__ADMIN_STRUCTURE__ structure', 'structure.id = user.structure_id', 'LEFT')
46 46
                         ->where($where)
47 47
                         ->where($whereMap)
48
-                        ->field('user.id,user.thumb_img,user.realname,user.post,structure.name as structure_name,user.mobile')
48
+                        ->field('user.id,user.thumb_img,user.mobile,user.realname,user.post,structure.name as structure_name,user.mobile')
49 49
                         ->page($param['page'], $param['limit'])
50 50
                         ->select();
51 51
                     foreach ($list as $k => $v) {
@@ -70,7 +70,7 @@ class UserLogic
70 70
                 ->join('__ADMIN_STRUCTURE__ structure', 'structure.id = user.structure_id', 'LEFT')
71 71
                 ->where($where)
72 72
                 ->where($whereMap)
73
-                ->field('user.id,user.thumb_img,user.realname,user.post,structure.name as structure_name')
73
+                ->field('user.id,user.thumb_img,user.mobile,user.realname,user.post,structure.name as structure_name')
74 74
                 ->page($param['page'], $param['limit'])
75 75
                 ->select();
76 76
             $dataCount = Db::name('admin_user')