condition ) { $condition = $this->condition; }else { $filter = MongodbSearchFilter::filterCondition([ 'opt_type' => 'opt_type', 'user_name' => 'user_name', 'success_times' => 'success_times', 'created_at' => 'created_at', 'period_num' => 'period_num', 'ip' => 'ip', 'device' => 'device', 'user_agent' => 'user_agent', 'request_route' => 'request_route', // 'version' => 'version', ]); $condition = $filter['condition']; } $data = LogUserLogin::lists($condition, [ 'pageSize' => $this->pageSize ]); unset($filter); $this->listData = $data; } /** * 要展示和导出的所有字段 * @return array */ public function getColumn(){ if(!$this->columns){ $this->columns = [ 'opt_type' => [ 'header' => \Yii::t('ctx', 'operatingType'),//操作类型 'headerOther' => [ 'width' => '120', ], 'value' => function($row) { return (isset($row['opt_type']) && $row['opt_type'] == 1 )? \Yii::t('ctx', 'loginSuccess') : \Yii::t('ctx', 'loginFail');//'登录成功' : '登录失败'; }, 'valueOther' => function($row) { return [ 'tag'=>['type'=>(isset($row['opt_type']) && $row['opt_type'] == 1 )? 'success' : 'danger', 'size' => 'small'] ]; }, ], 'opt_obj' => [ 'header' => \Yii::t('ctx', 'operationObjectNumber'), // 操作对象 'headerOther' => [ 'width' => '130', ], 'value' => function($row) { return 'member'; // 会员 }, ], 'user_name' => [ 'header' => \Yii::t('ctx', 'objectNumber'), // 对象编号 'headerOther' => [ 'width' => '120', ], ], 'return_result' => [ 'header' => \Yii::t('ctx', 'returnResult'), // 返回内容 'headerOther' => [ 'width' => '250', ], ], 'success_times' => [ 'header' => \Yii::t('ctx', 'successTimes'), // 登录成功次数 'headerOther' => [ 'width' => '160', ], ], 'fail_times' => [ 'header' => \Yii::t('ctx', 'failTimes'), // 登录失败次数 'headerOther' => [ 'width' => '190', ], ], 'created_at' => [ 'header' => \Yii::t('ctx', 'operatingTime'), // 操作时间 'value' => function($row) { return (new DateTime([ 'value' => $row['created_at'], ]))->result(); }, 'headerOther' => ['width' => '180'], ], 'period_num' => [ 'header' => \Yii::t('ctx', 'numberOfPhases'), // 期数 'headerOther' => ['width' => '180'], ], 'ip' => [ 'header' => \Yii::t('ctx', 'IPAddress'), // IP地址 'headerOther' => [ 'width' => '150', ], ], 'device' => [ 'header' => \Yii::t('ctx', 'client'), // 客户端 'headerOther' => [ 'width' => '150', ], ], 'user_agent' => [ 'header' => \Yii::t('ctx', 'operatingSystem'), // 操作系统 'headerOther' => [ 'width' => '950', ], ], 'request_route' => [ 'header' => \Yii::t('ctx', 'requestPath'), // 请求路径 'headerOther' => [ 'width' => '250', ], ], // 'version' => [ // 'header' => \Yii::t('ctx', 'version'), // 版本 // 'headerOther' => [ // 'width' => '100', // ], // ], ]; } return $this->columns; } /** * 前台用于筛选的类型集合 * @return mixed */ public function getFilterTypes() { if(!$this->filterTypes){ $this->filterTypes = [ // 'opt_type' => ['isUserTable'=>false, 'name'=>'操作类型', 'other'=> 'select', 'selectData'=> [['id'=> 1, 'name'=> '登录成功'], ['id'=> 0, 'name'=> '登录失败']]], 'opt_type' => ['isUserTable'=>false, 'name'=>\Yii::t('ctx', 'operatingType'), 'other'=> 'select', 'selectData'=> [['id'=> 1, 'name'=> \Yii::t('ctx', 'loginSuccess')], ['id'=> 0, 'name'=> \Yii::t('ctx', 'loginFail')]]], 'user_name' => ['isUserTable'=>false, 'name'=>\Yii::t('ctx', 'objectNumber')],//对象编号 'success_times' => ['isUserTable'=>false, 'name'=>\Yii::t('ctx', 'successTimes')],//登录成功次数 'fail_times' => ['isUserTable'=>false, 'name'=>\Yii::t('ctx', 'failTimes')],//登录失败次数 'created_at' => ['isUserTable'=>false, 'name'=>\Yii::t('ctx', 'operatingTime'), 'other'=> 'date'],//操作时间 'period_num' => ['isUserTable'=>false, 'name'=>\Yii::t('ctx', 'numberOfPhases')],//期数 'ip' => ['isUserTable'=>false, 'name'=>\Yii::t('ctx', 'IPAddress')], 'device' => ['isUserTable'=>false, 'name'=>\Yii::t('ctx', 'client')], 'user_agent' => ['isUserTable'=>false, 'name'=>\Yii::t('ctx', 'operatingSystem')], 'request_route' => ['isUserTable'=>false, 'name'=>\Yii::t('ctx', 'requestPath')], 'version' => ['isUserTable'=>false, 'name'=>\Yii::t('ctx', 'version')],//版本 ]; } return $this->filterTypes; } }