<?php namespace wstmart\wechat\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; } }