where(['user_token' => $data['user_token']])->field('id,account,balance')->find(); $user_play = M('user_play','tab_')->alias('user') ->join('tab_game as game on user.game_id = game.id') ->where(['user_id' => $user_info['id']]) ->field('user.game_name,user.bind_balance,game.cover')->select(); foreach($user_play as $k => $v) { $cover = get_cover($v['cover'],'path'); if(strpos($cover, 'http')!==false){ $cover = $cover; }else{ $cover = is_https()?'https://':'http://'.$_SERVER['HTTP_HOST'].$cover; } $user_play[$k]['cover'] = $cover; } $deposit = M('deposit','tab_')->where(['user_id' => $user_info['id'],'pay_status' => 1]) ->field('user_account,create_time,pay_amount')->select(); foreach($deposit as $k => $v) { $deposit[$k]['create_time'] = date('Y-m-d',$v['create_time']); } $this->assign('account', $user_info['account']); $this->assign('balance', $user_info['balance']?:0); $this->assign('deposit', $deposit); $this->assign('user_play', $user_play); $this->assign('user_token', $data['user_token']); $this->display(); } /** * 平台币充值 */ public function platform_pay_show() { $u = M('user', 'tab_')->where(['id' => $this->userId])->find(); $this->assign("account", $u['account']); $this->assign("user_token", $u['user_token']); $this->display(); } /** * 平台币充值展示 */ public function platform_pay() { $u = M('user', 'tab_')->where(['id' => $this->userId])->find(); $post = I('post.'); if(empty($post['money'])) { $this->error('金额不能为空'); } $this->assign("account", $u['account']); $this->assign('money',$post['money']); $this->display(); } }