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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
 
class commsg_controller extends user{
    //求职咨询
    function index_action(){
        
        $this->public_action();
        
        $msgM  =  $this -> MODEL('msg');
        
        $where['uid']    =  $this -> uid;
        
        $urlarr['c']    =    $_GET['c'];
        
        $urlarr['page']    =    '{{page}}';
       
        $pageurl        =    Url('member',$urlarr);
 
        $pageM            =    $this   ->  MODEL('page');
       
         $pages            =    $pageM  ->  pageList('msg',$where,$pageurl,$_GET['page']);
        
        if($pages['total'] > 0){
            
            $where['orderby']        =    'id';
            
            $where['limit']            =    $pages['limit'];
            
            $List   =  $msgM  ->  getList($where);
            
            $this -> yunset('rows',$List['list']);
        
        }
        
        //提醒处理
        
        $msgM -> upInfo(array('uid'=>$this->uid,'user_remind_status'=>0),array('user_remind_status'=>1,'usertype'=>1));
        
        $this->user_tpl('commsg');
    
    }
    
    function del_action(){
        $id           =      $_GET['id'];
        
        $msgM        =      $this->MODEL('msg');
        
        $data        =    array(
            
            'uid'        =>    $this->uid,
            
            'usertype'    =>    $this->usertype
        );
        
        $return        =      $msgM -> delInfo($id,$data);
        
        $this -> layer_msg($return['msg'],$return['errcode'],$return['layertype'],$_SERVER['HTTP_REFERER']);
    
    }
}
?>