22 lines
450 B
PHP
Executable File
22 lines
450 B
PHP
Executable File
<?php
|
|
namespace wstmart\admin\controller;
|
|
use wstmart\admin\model\LogSms as M;
|
|
/**
|
|
* ============================================================================
|
|
* 登录日志控制器
|
|
*/
|
|
class Logsms extends Base{
|
|
|
|
public function index(){
|
|
|
|
return $this->fetch("list");
|
|
}
|
|
|
|
/**
|
|
* 获取分页
|
|
*/
|
|
public function pageQuery(){
|
|
$m = new M();
|
|
return WSTGrid($m->pageQuery());
|
|
}
|
|
} |