Update Oplog.php

This commit is contained in:
邹景立 2021-03-19 14:41:25 +08:00
parent 0f95e38167
commit 7b4d45c111

View File

@ -45,8 +45,8 @@ class Oplog extends Controller
$this->title = '系统日志管理'; $this->title = '系统日志管理';
$this->isSupper = AdminService::instance()->isSuper(); $this->isSupper = AdminService::instance()->isSuper();
$this->actions = $this->app->db->name($this->table)->distinct(true)->column('action'); $this->actions = $this->app->db->name($this->table)->distinct(true)->column('action');
$query = $this->_query($this->table)->order('id desc'); $query = $this->_query($this->table)->dateBetween('create_at')->order('id desc');
$query->like('action,node,content,username,geoip')->dateBetween('create_at')->page(); $query->like('action,node,content,username,geoip')->page();
} }
/** /**
@ -67,15 +67,17 @@ class Oplog extends Controller
/** /**
* 清理系统日志 * 清理系统日志
* @auth true * @auth true
* @throws \think\db\exception\DbException
*/ */
public function clear() public function clear()
{ {
if ($this->app->db->name($this->table)->whereRaw('1=1')->delete() !== false) { try {
$this->_query($this->table)->empty();
sysoplog('系统运维管理', '成功清理所有日志数据'); sysoplog('系统运维管理', '成功清理所有日志数据');
$this->success('日志清理成功!'); $this->success('日志清理成功!');
} else { } catch (\think\exception\HttpResponseException $exception) {
$this->error('日志清理失败,请稍候再试!'); throw $exception;
} catch (\Exception $exception) {
$this->error("日志清理失败,{$exception->getMessage()}");
} }
} }