You've already forked qlg.tsgz.moe
							
							
		
			
				
	
	
		
			29 lines
		
	
	
		
			436 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			436 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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);
 | |
|     }
 | |
| 
 | |
| } |