@@ -347,7 +347,6 @@ class User extends Api
*/
public function user_withdraw(){
$user_id = $this->check_login();
- echo $user_id;die;
$money = input('money'); //提现金额
$withdraw_type = input('withdraw_type'); //提现方式
if (!in_array($withdraw_type,array('weixin','zfb'))) $this->error('提现方式错误');
@@ -112,6 +112,7 @@ class Api
$this->error('请先登录', '', 0);
}
$userinfo = User::where('id', $user->id)->find();
+ print_r($userinfo);die;
if (1 != $userinfo['status']) {
$this->error('账号被禁用', '', 0);