2019-12-12 22:33:12 +08:00
|
|
|
<?php
|
|
|
|
namespace catchAdmin\system\controller;
|
|
|
|
|
|
|
|
use catcher\base\CatchController;
|
|
|
|
use catcher\CatchResponse;
|
|
|
|
use think\facade\Db;
|
|
|
|
|
|
|
|
class LoginLog extends CatchController
|
|
|
|
{
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
return $this->fetch();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function list()
|
|
|
|
{
|
|
|
|
return CatchResponse::paginate(Db::name('login_log')->paginate(10));
|
|
|
|
}
|
2019-12-15 15:50:10 +08:00
|
|
|
|
|
|
|
public function empty()
|
|
|
|
{
|
|
|
|
return CatchResponse::success(Db::name('login_log')->delete(true), '清空成功');
|
|
|
|
}
|
2019-12-12 22:33:12 +08:00
|
|
|
}
|