* @date 2017/02/15 18:12 */ class Log extends BasicAdmin { /** * 指定当前数据表 * @var string */ protected $table = 'SystemLog'; /** * 日志列表 */ public function index() { $this->title = '系统操作日志'; $db = Db::name($this->table)->order('id desc'); parent::_list($db); } /** * 列表数据处理 * @param $data */ protected function _index_data_filter(&$data) { $ip = new \Ip2Region(); foreach ($data as &$vo) { $result = $ip->btreeSearch($vo['ip']); $vo['isp'] = isset($result['region']) ? $result['region'] : ''; $vo['isp'] = str_replace(['|0|0|0|0', '|'], ['', ' '], $vo['isp']); } } /** * 日志删除操作 */ public function del() { if (DataService::update($this->table)) { $this->success("日志删除成功!", ''); } else { $this->error("日志删除失败,请稍候再试!"); } } }