update:重新渲染system页面

This commit is contained in:
JaguarJack
2021-04-03 12:50:21 +08:00
parent 6ba18dfad2
commit b79b226a74
7 changed files with 210 additions and 1 deletions

View File

@@ -11,7 +11,6 @@ class OperateLog extends \think\Model
use BaseOptionsTrait;
use OperateLogSearch;
protected $name = 'operate_log';
protected $field = [
@@ -42,4 +41,9 @@ class OperateLog extends \think\Model
->order($this->aliasField('id'), 'desc')
->paginate();
}
protected function getCreatedAtAttr($value)
{
return date('Y-m-d H:i:s', $value);
}
}