songxingwei 3 years ago
parent
commit
25e79b48fb
1 changed files with 0 additions and 2 deletions
  1. 0 2
      application/api/controller/User.php

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

@@ -352,11 +352,9 @@ class User extends Api
         if (!in_array($withdraw_type,array('weixin','zfb'))) $this->error('提现方式错误');
         if (!$money || $money<=0) $this->error('金额错误');
         $day = date('d');
-        $day = '02';
         if ($day!='01' && $day!='15'){
             $this->error('每月1号和15号才可以提现');
         }
-        echo 222;die;
         $result = Users::userWithdraw($user_id,$money,$withdraw_type);
         if ($result['code']){
             $this->success($result['msg']);