meta_title = "绑币充值记录"; return parent::_initialize(); // TODO: Change the autogenerated stub } public function lists($p=1){ $model = new BindRechargeModel(); empty(I('game_id')) || $map['game_id'] = I('game_id'); empty(I("pay_way")) || $map['pay_way'] = I("pay_way"); empty(I('pay_status')) || $map['pay_status'] = I('pay_status'); empty(I("account")) || $map['user_account'] = ["like","%".I("account")."%"]; if(!empty(I("time_start")) && !empty(I("time_end"))){ $map['create_time'] = ["between",[strtotime(I("time_start")),strtotime(I("time_end"))+86400-1]]; }elseif(!empty(I("time_start"))){ $map['create_time'] = ["between",[strtotime(I("time_start")),time()]]; }elseif(!empty(I("time_end"))){ $map['create_time'] = ["LT",(strtotime(I("time_end"))+86400-1)]; } // $promoteRoot = getPowerPromoteIds(); // if ($promoteRoot) { // $map['promote_id'] =array('in',$promoteRoot); // } // $promoteRoot = getPowerPromoteIds(); // $data_empower_type = session('user_auth')['data_empower_type']; // // if ($promoteRoot) { // $map['promote_id'] =array('in',$promoteRoot); // } else if(!$promoteRoot&&$data_empower_type!=1){ // $map['id'] = array('lt',1); // } setPowerPromoteIds($map,'promote_id'); $this->checkListOrCountAuthRestMap($map,[]); empty(I('pay_order_number')) || $map['pay_order_number'] = I('pay_order_number',''); $data = $model->getLists($map,"create_time desc",$p); foreach($data as $key => $value) { ($data[$key]['promote_account']=='官方渠道')?($data[$key]['promote_account']=C('OFFICIEL_CHANNEL')):''; } $this->assign("data",$data); //分页 $count = $data['count']; if(isset($_REQUEST['row'])) {$row = $_REQUEST['row'];}else{$row = 10;} $page = set_pagination($count,$row); if($page) {$this->assign('_page', $page);} $this->m_title = '绑币充值'; $this->assign('commonset',M('Kuaijieicon')->where(['url'=>'BindRechargeRecord/lists','status'=>1])->find()); $this->display(); } }