You've already forked qlg.tsgz.moe
							
							
		
			
				
	
	
		
			22 lines
		
	
	
		
			471 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			471 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
namespace wstmart\admin\controller;
 | 
						|
use wstmart\admin\model\EctDeal as M;
 | 
						|
/**
 | 
						|
 * ============================================================================
 | 
						|
 * 提现控制器
 | 
						|
 */
 | 
						|
class Ectdeal extends Base{
 | 
						|
    public function index(){
 | 
						|
    	return $this->fetch("list");
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * 获取分页
 | 
						|
     */
 | 
						|
    public function pageQuery(){
 | 
						|
        $m = new M();
 | 
						|
        $result=$m->pageQuery();
 | 
						|
        return WSTGrid($result);
 | 
						|
    }
 | 
						|
}
 |