From 0f094c0376e64d1a0a700979745e8ade5cacaa42 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 5 May 2017 16:45:01 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E7=B2=89?= =?UTF-8?q?=E4=B8=9D=E9=BB=91=E5=90=8D=E5=8D=95=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/wechat/controller/Fans.php | 6 ++-- application/wechat/view/fans.back.html | 41 ++++++++++++++++++++++++- application/wechat/view/fans.index.html | 40 +++++++++++++++++++++++- static/theme/default/css/console.css | 3 +- 4 files changed, 85 insertions(+), 5 deletions(-) diff --git a/application/wechat/controller/Fans.php b/application/wechat/controller/Fans.php index a3d87aa7e..91ef40dc1 100644 --- a/application/wechat/controller/Fans.php +++ b/application/wechat/controller/Fans.php @@ -42,7 +42,8 @@ class Fans extends BasicAdmin { $this->title = '微信粉丝管理'; $db = Db::name($this->table)->where('is_back', '0')->order('id desc'); $get = $this->request->get(); - foreach (['nickname'] as $key) { + !empty($get['sex']) && $db->where('sex', $get['sex']); + foreach (['nickname', 'country', 'province', 'city'] as $key) { if (isset($get[$key]) && $get[$key] !== '') { $db->where($key, 'like', "%{$get[$key]}%"); } @@ -57,7 +58,8 @@ class Fans extends BasicAdmin { $this->title = '微信粉丝黑名单管理'; $db = Db::name($this->table)->where('is_back', '1')->order('id desc'); $get = $this->request->get(); - foreach (['nickname'] as $key) { + !empty($get['sex']) && $db->where('sex', $get['sex']); + foreach (['nickname', 'country', 'province', 'city'] as $key) { if (isset($get[$key]) && $get[$key] !== '') { $db->where($key, 'like', "%{$get[$key]}%"); } diff --git a/application/wechat/view/fans.back.html b/application/wechat/view/fans.back.html index 68a3f6bb6..f5d996a3b 100644 --- a/application/wechat/view/fans.back.html +++ b/application/wechat/view/fans.back.html @@ -18,17 +18,56 @@