<?php
|
|
class consume_controller extends lietou{
|
function index_action(){
|
include(CONFIG_PATH."db.data.php");
|
$this->public_action();
|
$orderM = $this->MODEL('companyorder');
|
$where['com_id'] = $this->uid;
|
$where['usertype'] = $this->usertype;
|
//分页链接
|
$urlarr['page'] = '{{page}}';
|
$urlarr['c'] = "consume";
|
$pageurl = Url('member',$urlarr);
|
|
//提取分页
|
$pageM = $this -> MODEL('page');
|
$pages = $pageM -> pageList('company_pay',$where,$pageurl,$_GET['page']);
|
|
//分页数大于0的情况下 执行列表查询
|
if($pages['total'] > 0){
|
|
$where['orderby'] = 'id,desc';
|
$where['limit'] = $pages['limit'];
|
|
$List = $orderM->getPayList($where,array('utype'=>'consume'));
|
|
$this->yunset("rows",$List);
|
}
|
|
$this->lietou_tpl('consume');
|
}
|
|
function del_action(){
|
|
$orderM = $this->MODEL('companyorder');
|
|
$return = $orderM->cancelOrder(array('id'=>(int)$_GET['id'], 'uid'=>$this->uid));
|
|
$this->layer_msg($return['msg'],$return['errcode'],0,$return['url']);
|
|
}
|
}
|
?>
|