<?php
|
|
class entrust_resume_controller extends lietou{
|
function index_action(){
|
$entrustM = $this -> MODEL('entrust');
|
|
$where['lt_uid'] = $this -> uid;
|
|
//分页链接
|
$urlarr['c'] = $_GET['c'];
|
$urlarr['page'] = '{{page}}';
|
$pageurl = Url('member',$urlarr);
|
|
$pageM = $this -> MODEL('page');
|
$pages = $pageM -> pageList('entrust',$where,$pageurl,$_GET['page']);
|
|
if($pages['total'] > 0){
|
|
if($_GET['order']){
|
|
$where['orderby'] = $_GET['t'].','.$_GET['order'];
|
$urlarr['order'] = $_GET['order'];
|
$urlarr['t'] = $_GET['t'];
|
|
}else{
|
|
$where['orderby'] = array('id,desc');
|
}
|
|
$where['limit'] = $pages['limit'];
|
|
$rows = $entrustM -> getList($where);
|
$this->yunset("list",$rows);
|
}
|
|
$entrustM -> upInfo(array('remind_status'=>1),array('lt_uid'=>$this->uid,'remind_status'=>0));
|
|
$this->public_action();
|
$this->yunset("class",18);
|
$this->lietou_tpl('entrust_resume');
|
}
|
|
function del_action(){
|
if($_POST['delid'] || $_GET['del']){
|
$entrustM = $this -> MODEL('entrust');
|
if(is_array($_POST['delid'])){
|
$id = $_POST['delid'];
|
}else{
|
$id = intval($_GET['del']);
|
}
|
$arr = $entrustM -> delInfo($id,array('uid'=>$this->uid,'usertype'=>$this->usertype));
|
|
$this -> layer_msg($arr['msg'], $arr['errcode'], $arr['layertype'],$_SERVER['HTTP_REFERER']);
|
}
|
}
|
}
|
?>
|