wupengfei 2 years ago
parent
commit
65d140f972
1 changed files with 2 additions and 0 deletions
  1. 2 0
      application/user/controller/Invite.php

+ 2 - 0
application/user/controller/Invite.php

@@ -133,6 +133,7 @@ class Invite extends Controller
             $list =  Db::name('store_member')
                 ->field('pid,count(*) count')
                 ->where('pid','>',0)
+                ->where('bank_num is not null')
                 ->where('is_auth',1)
                 ->where($where)
                 ->whereBetweenTime('create_at',$start_date_time,$end_date_time)
@@ -144,6 +145,7 @@ class Invite extends Controller
                 ->field('pid,count(*) count')
                 ->where('pid','>',0)
                 ->where('is_auth',1)
+                ->where('bank_num is not null')
                 ->where($where)
                 ->group('pid')
                 ->order('count desc')