params['company_id'])) { unset($allowSearch['company_id']); unset($this->params['company_id']); } return array_intersect(array_keys($this->params), $allowSearch); } /** * @notes 获取用户列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author 段誉 * @date 2022/9/22 15:50 */ public function lists(): array { $where = []; if(isset($this->params['company_id']) && $this->params['company_id'] > 0){ $where[] = ['company_id', '=', $this->params['company_id']]; }else{ if($this->adminInfo['root']!=1){ if($this->adminInfo['role_id'][0]==8){ $where[]=['area_manager','=',$this->adminInfo['admin_id']]; }else{ $company_id=Db::name('company')->where('admin_id',$this->adminInfo['admin_id'])->value('id'); $where[]=['company_id','=',$company_id]; } } } $field = "id,id contract,sn,nickname,sex,avatar,account,mobile,channel,create_time,admin_id,company_id,street,street as street_name,is_contract,group_id"; $lists = User::withSearch($this->setSearch(), $this->params) ->append(['role_name']) ->with(['company']) ->withAttr('role_name', function ($value, $data){ $role = UserRole::where('id', $data['group_id'])->find(); return $role? $role['name']: "无"; }) ->where($where) ->limit($this->limitOffset, $this->limitLength) ->field($field) ->order('id desc') ->select() ->toArray(); foreach ($lists as &$item) { $item['channel'] = UserTerminalEnum::getTermInalDesc($item['channel']); } return $lists; } /** * @notes 获取数量 * @return int * @author 段誉 * @date 2022/9/22 15:51 */ public function count(): int { return User::withSearch($this->setSearch(), $this->params)->count(); } /** * @notes 导出文件名 * @return string * @author 段誉 * @date 2022/11/24 16:17 */ public function setFileName(): string { return '用户列表'; } /** * @notes 导出字段 * @return string[] * @author 段誉 * @date 2022/11/24 16:17 */ public function setExcelFields(): array { return [ 'sn' => '用户编号', 'nickname' => '用户昵称', 'account' => '账号', 'mobile' => '手机号码', 'channel' => '注册来源', 'create_time' => '注册时间', ]; } }