列表页

This commit is contained in:
2020-06-09 16:43:11 +08:00
parent ac7412a461
commit 597ab83033
6 changed files with 194 additions and 0 deletions

View File

@ -0,0 +1,29 @@
<?php
namespace wstmart\admin\controller;
use wstmart\admin\model\LogSysData as M;
class LogSysData extends Base
{
public function index()
{
return $this->fetch("list");
}
public function index2()
{
return $this->fetch("list2");
}
/**
* 获取分页
*/
public function pageQuery(){
$m = new M();
$rs = $m->pageQuery();
return WSTGrid($rs);
}
}