zhangguidong 2 năm trước cách đây
mục cha
commit
3fe1c93296
3 tập tin đã thay đổi với 5 bổ sung2 xóa
  1. 1 1
      app/data/controller/api/business/User.php
  2. 0 1
      public/.htaccess
  3. 4 0
      public/nginx.htaccess

+ 1 - 1
app/data/controller/api/business/User.php

@@ -301,7 +301,7 @@ class User extends Auth
             $this->error('余额不足');
         }
         $bank_info =  SystemUserBank::mk()->where(['admin_id'=>$admin_id,'number'=>$data['bank_number']])->find();
-        if($bank_info){
+        if(!$bank_info){
             $this->error('提现账号有问题');
         }
 

+ 0 - 1
public/.htaccess

@@ -1 +0,0 @@
-]

+ 4 - 0
public/nginx.htaccess

@@ -0,0 +1,4 @@
+if (!-e $request_filename){  
+    rewrite ^/index.php(.*)$ /index.php?s=$1 last; 
+    rewrite ^/(.*)$ /index.php?s=$1 last;  
+}