chengkun
2025-05-23 a6f7b382623096b6a00924f418447cf5204e825e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
 
class integral_controller extends user{
    //获取积分规则
    function index_action(){
        $integralM    =    $this->MODEL('integral');
        $resumeM    =    $this->MODEL('resume');
        
        $statusList    =    $integralM    ->    integralMission(array('type'=>'member','uid'=>$this->uid,'usertype'=>$this->usertype));
        
        $expectnum    =    $resumeM->getExpectNum(array('uid'=>$this->uid));
        
        $this->public_action();
        $this->yunset("expectnum",$expectnum);
        $this->yunset("statusList",$statusList);
        $this->user_tpl('integral');
    }
    
}
?>