|
@@ -51,8 +51,9 @@ class Invite extends Controller
|
|
|
|
|
|
$name = input('name');
|
|
|
$phone = input('phone');
|
|
|
+ $is_bind = input('is_bind');
|
|
|
$sel_id = 0;
|
|
|
- $where = 'id > 0';
|
|
|
+ $where = 'id > 0';
|
|
|
if($name || $phone) {
|
|
|
$se = [];
|
|
|
if($name) $s[] = ['name','=',$name];
|
|
@@ -66,27 +67,26 @@ class Invite extends Controller
|
|
|
$time = explode(' - ',$_GET['create_at']);
|
|
|
$start_date_time = $time[0];
|
|
|
$end_date_time = $time[1];
|
|
|
- $this->_query($this->table)
|
|
|
+ $query = $this->_query($this->table)
|
|
|
->field('pid,count(*) count')
|
|
|
->where('pid','>',0)
|
|
|
- ->where('is_auth',1)
|
|
|
- ->where('bank_num is not null')
|
|
|
- ->where($where)
|
|
|
+ ->where('is_auth',1);
|
|
|
+ if ($is_bind)$query->where('bank_num is not null');
|
|
|
+ $query->where($where)
|
|
|
->whereBetweenTime('create_at',$start_date_time,$end_date_time)
|
|
|
->group('pid')
|
|
|
->order('count desc')
|
|
|
->page();
|
|
|
}else{
|
|
|
- $this->_query($this->table)
|
|
|
+ $query= $this->_query($this->table)
|
|
|
->field('pid,count(*) count')
|
|
|
->where('pid','>',0)
|
|
|
- ->where('is_auth',1)
|
|
|
- ->where('bank_num is not null')
|
|
|
- ->where($where)
|
|
|
+ ->where('is_auth',1);
|
|
|
+ if ($is_bind)$query->where('bank_num is not null');
|
|
|
+ $query->where($where)
|
|
|
->group('pid')
|
|
|
->order('count desc')
|
|
|
->page();
|
|
|
-
|
|
|
}
|
|
|
|
|
|
|
|
@@ -117,6 +117,7 @@ class Invite extends Controller
|
|
|
|
|
|
$name = input('name');
|
|
|
$phone = input('phone');
|
|
|
+ $is_bind = input('is_bind');
|
|
|
$where = 'id > 0';
|
|
|
if($name || $phone) {
|
|
|
$se = [];
|
|
@@ -133,7 +134,9 @@ class Invite extends Controller
|
|
|
$list = Db::name('store_member')
|
|
|
->field('pid,count(*) count')
|
|
|
->where('pid','>',0)
|
|
|
- ->where('bank_num is not null')
|
|
|
+ ->when($is_bind,function ($query)use ($is_bind){
|
|
|
+ if($is_bind)$query ->where('bank_num is not null');
|
|
|
+ })
|
|
|
->where('is_auth',1)
|
|
|
->where($where)
|
|
|
->whereBetweenTime('create_at',$start_date_time,$end_date_time)
|
|
@@ -145,7 +148,9 @@ class Invite extends Controller
|
|
|
->field('pid,count(*) count')
|
|
|
->where('pid','>',0)
|
|
|
->where('is_auth',1)
|
|
|
- ->where('bank_num is not null')
|
|
|
+ ->when($is_bind,function ($query)use ($is_bind){
|
|
|
+ if($is_bind)$query ->where('bank_num is not null');
|
|
|
+ })
|
|
|
->where($where)
|
|
|
->group('pid')
|
|
|
->order('count desc')
|