wupengfei 2 年之前
父节点
当前提交
b6a5d18ec1
共有 2 个文件被更改,包括 33 次插入12 次删除
  1. 17 12
      application/user/controller/Invite.php
  2. 16 0
      application/user/view/invite/index_search.html

+ 17 - 12
application/user/controller/Invite.php

@@ -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')

+ 16 - 0
application/user/view/invite/index_search.html

@@ -22,6 +22,22 @@
         </div>
 
         <div class="layui-form-item layui-inline">
+            <label class="layui-form-label">是否绑卡</label>
+            <div class="layui-input-inline">
+                <select class="layui-select" name="is_bind">
+                    {foreach ['0'=>'否','1'=>'是'] as $k=>$v}
+                        {eq name='Think.get.is_bind' value='$k.""'}
+                            <option selected value="{$k}">{$v}</option>
+                         {else}
+                            <option value="{$k}">{$v}</option>
+                        {/eq}
+                    {/foreach}
+                </select>
+            </div>
+        </div>
+
+
+        <div class="layui-form-item layui-inline">
             <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
         </div>