songxingwei 3 سال پیش
والد
کامیت
361c3f26ac
2فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 0 1
      application/api/controller/User.php
  2. 1 0
      application/common/controller/Api.php

+ 0 - 1
application/api/controller/User.php

@@ -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('提现方式错误');

+ 1 - 0
application/common/controller/Api.php

@@ -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);
             }