From 917e6ec7771be3986f75c326426caed371ca0815 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 31 Jul 2019 13:59:47 +0800 Subject: [PATCH] Update Index.php --- application/wechat/controller/Index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/wechat/controller/Index.php b/application/wechat/controller/Index.php index 64c7aa722..a33a2b9af 100644 --- a/application/wechat/controller/Index.php +++ b/application/wechat/controller/Index.php @@ -38,18 +38,18 @@ class Index extends Controller */ public function index() { + $map = ['appid' => WechatService::getAppid()]; $this->totalJson = ['xs' => [], 'ys' => []]; for ($i = 5; $i >= 0; $i--) { $time = strtotime("-{$i} months"); $where = [['subscribe_at', '<', date('Y-m-32 00:00:00', $time)]]; $this->totalJson['xs'][] = date('Y年m月', $time); $item = ['_0' => 0, '_1' => 0]; - $list = Db::name('WechatFans')->field('count(1) count,is_black black')->where($where)->group('is_black')->select(); + $list = Db::name('WechatFans')->field('count(1) count,is_black black')->where($map)->where($where)->group('is_black')->select(); foreach ($list as $vo) $item["_{$vo['black']}"] = $vo['count']; $this->totalJson['ys']['_0'][] = $item['_0']; $this->totalJson['ys']['_1'][] = $item['_1']; } - $map = ['appid' => WechatService::getAppid()]; $this->totalFans = Db::name('WechatFans')->where(['is_black' => '0'])->where($map)->count(); $this->totalBlack = Db::name('WechatFans')->where(['is_black' => '1'])->where($map)->count(); $this->totalNews = Db::name('WechatNews')->where(['is_deleted' => '0'])->count();