songxingwei 3 년 전
부모
커밋
9e22ab3e3c
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      application/api/controller/User.php

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

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