You've already forked qlg.tsgz.moe
							
							
		
			
				
	
	
		
			39 lines
		
	
	
		
			990 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			990 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
namespace wstmart\mobile\controller;
 | 
						|
use wstmart\common\model\UserScores as MUserscores;
 | 
						|
/**
 | 
						|
 * ============================================================================
 | 
						|
 * 地区控制器
 | 
						|
 */
 | 
						|
class Userscores extends Base{
 | 
						|
    // 前置方法执行列表
 | 
						|
    protected $beforeActionList = [
 | 
						|
        'checkAuth'
 | 
						|
    ];
 | 
						|
	/**
 | 
						|
    * 查看
 | 
						|
    */
 | 
						|
	public function index(){
 | 
						|
		$rs = model('Users')->getFieldsById((int)session('WST_USER.userId'),['userScore','userTotalScore']);
 | 
						|
		$this->assign('object',$rs);
 | 
						|
		return $this->fetch('users/userscores/list');
 | 
						|
	}
 | 
						|
    /**
 | 
						|
    * 获取数据
 | 
						|
    */
 | 
						|
    public function pageQuery(){
 | 
						|
        $userId = (int)session('WST_USER.userId');
 | 
						|
        $data = model('UserScores')->pageQuery($userId);
 | 
						|
        return WSTReturn("", 1,$data);
 | 
						|
    }
 | 
						|
    /**
 | 
						|
     * 签到惠宝
 | 
						|
     */
 | 
						|
    public function signScore(){
 | 
						|
    	$m = new MUserscores();
 | 
						|
    	$userId = (int)session('WST_USER.userId');
 | 
						|
    	$rs = $m->signScore($userId);
 | 
						|
    	return $rs;
 | 
						|
    }
 | 
						|
}
 |