quanwei
2025-12-25 a47b138c7455dee981af9b4fac431a16c0eee675
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
 
namespace app\branch\controller\auth;
 
use app\branch\controller\Controller;
use app\branch\model\branch\LoginLog as LoginLogModel;
/**
 * 管理员登录日志
 */
class Loginlog extends Controller
{
    /**
     * 登录日志
     */
    public function index()
    {
        $model = new LoginLogModel;
        $list = $model->getList($this->getBranchId(), $this->postData());
        return $this->renderSuccess('', compact('list'));
    }
}