diff --git a/application/wechat/controller/Fans.php b/application/wechat/controller/Fans.php index 83c278fb9..a3d87aa7e 100644 --- a/application/wechat/controller/Fans.php +++ b/application/wechat/controller/Fans.php @@ -40,7 +40,7 @@ class Fans extends BasicAdmin { */ public function index() { $this->title = '微信粉丝管理'; - $db = Db::name($this->table)->order('id desc'); + $db = Db::name($this->table)->where('is_back', '0')->order('id desc'); $get = $this->request->get(); foreach (['nickname'] as $key) { if (isset($get[$key]) && $get[$key] !== '') { @@ -50,12 +50,60 @@ class Fans extends BasicAdmin { return parent::_list($db); } + /** + * 黑名单列表 + */ + public function back() { + $this->title = '微信粉丝黑名单管理'; + $db = Db::name($this->table)->where('is_back', '1')->order('id desc'); + $get = $this->request->get(); + foreach (['nickname'] as $key) { + if (isset($get[$key]) && $get[$key] !== '') { + $db->where($key, 'like', "%{$get[$key]}%"); + } + } + return parent::_list($db); + } + + /** + * 设置黑名单 + */ + public function backadd() { + $ids = $this->request->post('id', ''); + empty($ids) && $this->error('没有需要操作的数据!'); + $openids = Db::name($this->table)->where('id', 'in', explode(',', $ids))->column('openid'); + empty($openids) && $this->error('没有需要操作的数据!'); + $wechat = & load_wechat('User'); + if (false !== $wechat->addBacklist($openids)) { + Db::name($this->table)->where('openid', 'in', $openids)->setField('is_back', '1'); + $this->success("已成功将 " . count($openids) . " 名粉丝移到黑名单!", ''); + } + $this->error("设备黑名单失败,请稍候再试!{$wechat->errMsg}[{$wechat->errCode}]"); + } + + /** + * 取消黑名 + */ + public function backdel() { + $ids = $this->request->post('id', ''); + empty($ids) && $this->error('没有需要操作的数据!'); + $openids = Db::name($this->table)->where('id', 'in', explode(',', $ids))->column('openid'); + empty($openids) && $this->error('没有需要操作的数据!'); + $wechat = & load_wechat('User'); + if (false !== $wechat->delBacklist($openids)) { + Db::name($this->table)->where('openid', 'in', $openids)->setField('is_back', '0'); + $this->success("已成功将 " . count($openids) . " 名粉丝从黑名单中移除!", ''); + } + $this->error("设备黑名单失败,请稍候再试!{$wechat->errMsg}[{$wechat->errCode}]"); + } + /** * 同步粉丝列表 */ public function sync() { Db::name($this->table)->where('1=1')->delete(); if (WechatService::syncAllFans('')) { + WechatService::syncBlackFans(''); LogService::write('微信管理', '同步全部微信粉丝成功'); $this->success('同步获取所有粉丝成功!', ''); } diff --git a/application/wechat/controller/Tags.php b/application/wechat/controller/Tags.php index 978029e06..b04f76de1 100644 --- a/application/wechat/controller/Tags.php +++ b/application/wechat/controller/Tags.php @@ -41,8 +41,8 @@ class Tags extends BasicAdmin { */ public function index() { $this->title = '微信粉丝标签管理'; - $db = Db::name($this->table)->order('id asc'); $get = $this->request->get(); + $db = Db::name($this->table)->order('id asc'); foreach (['name'] 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 new file mode 100644 index 000000000..68a3f6bb6 --- /dev/null +++ b/application/wechat/view/fans.back.html @@ -0,0 +1,69 @@ +{extend name='extra@admin/content' /} + +{block name="button"} + +
+ +
+ +
+ +
+ +{/block} + +{block name="content"} + + + + + +
+ + + + + + + + + + + + + {foreach $list as $key=>$vo} + + + + + + + + {/foreach} + +
+ + 用户昵称性别区域关注时间
+ + + + {$vo.nickname|default="未设置微信昵称"} + {$vo.sex==1?'男':($vo.sex==2?'女':'未知')}{$vo.country|default='未设置区域信息'}{$vo.province}{$vo.city}{$vo.subscribe_at}
+ {if isset($page)}

{$page}

{/if} +
+{/block} \ No newline at end of file diff --git a/application/wechat/view/fans.index.html b/application/wechat/view/fans.index.html index 6a3bffa53..8f7c51b81 100644 --- a/application/wechat/view/fans.index.html +++ b/application/wechat/view/fans.index.html @@ -1,9 +1,15 @@ {extend name='extra@admin/content' /} {block name="button"} +
- +
+ +
+ +
+ {/block} {block name="content"} diff --git a/application/wechat/view/tags.index.html b/application/wechat/view/tags.index.html index 1a5bf1486..fda721160 100644 --- a/application/wechat/view/tags.index.html +++ b/application/wechat/view/tags.index.html @@ -54,13 +54,19 @@ {$vo.id|default='0'} {$vo.name|default=''} - {$vo.id<100 ? "系统标签" : "自定义标签"} + {$vo.id < 100 ? "系统标签" : "自定义标签"} {$vo.count|default=''} + {if auth("$classuri/edit")} + {if $vo.id >= 100} | 编辑 + {else} + 编辑 {/if} + {/if} + {if auth("$classuri/del")} | {if $vo.id >= 100} @@ -69,6 +75,7 @@ 删除 {/if} {/if} + {/foreach}