25 lines
513 B
PHP
25 lines
513 B
PHP
|
<?php
|
||
|
|
||
|
namespace app\admin\controller\example;
|
||
|
|
||
|
use app\common\controller\Backend;
|
||
|
|
||
|
/**
|
||
|
* 自定义搜索
|
||
|
*
|
||
|
* @icon fa fa-search
|
||
|
* @remark 自定义列表的搜索
|
||
|
*/
|
||
|
class Customsearch extends Backend
|
||
|
{
|
||
|
protected $model = null;
|
||
|
|
||
|
public function _initialize()
|
||
|
{
|
||
|
parent::_initialize();
|
||
|
$this->model = model('AdminLog');
|
||
|
$ipList = $this->model->whereTime('createtime', '-37 days')->group("ip")->column("ip,ip as aa");
|
||
|
$this->view->assign("ipList", $ipList);
|
||
|
}
|
||
|
}
|