TradeRule后台添加大体

This commit is contained in:
2020-05-26 22:13:14 +08:00
parent 74c2c5d072
commit 5e0b351a05
8 changed files with 438 additions and 23 deletions

View File

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