Index.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\wechat\controller;
  15. use library\Controller;
  16. use think\Db;
  17. /**
  18. * 微信数据统计
  19. * Class Index
  20. * @package app\wechat\controller
  21. */
  22. class Index extends Controller
  23. {
  24. /**
  25. * 微信数据统计
  26. * @auth true
  27. * @menu true
  28. * @throws \think\db\exception\DataNotFoundException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. * @throws \think\exception\DbException
  31. */
  32. public function index()
  33. {
  34. $this->totalJson = ['xs' => [], 'ys' => []];
  35. for ($i = 5; $i >= 0; $i--) {
  36. $time = strtotime("-{$i} months");
  37. $where = [['subscribe_at', '<', date('Y-m-32 00:00:00', $time)]];
  38. $this->totalJson['xs'][] = date('Y年m月', $time);
  39. $item = ['_0' => 0, '_1' => 0];
  40. $list = Db::name('WechatFans')->field('count(1) count,is_black black')->where($where)->group('is_black')->select();
  41. foreach ($list as $vo) $item["_{$vo['black']}"] = $vo['count'];
  42. $this->totalJson['ys']['_0'][] = $item['_0'];
  43. $this->totalJson['ys']['_1'][] = $item['_1'];
  44. }
  45. $this->totalFans = Db::name('WechatFans')->where(['is_black' => '0'])->count();
  46. $this->totalBlack = Db::name('WechatFans')->where(['is_black' => '1'])->count();
  47. $this->totalNews = Db::name('WechatNews')->where(['is_deleted' => '0'])->count();
  48. $this->totalRule = Db::name('WechatKeys')->count();
  49. $this->fetch();
  50. }
  51. }