Invite.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <?php
  2. namespace app\user\controller;
  3. use app\common\library\PHPExcelService;
  4. use library\Controller;
  5. use think\Db;
  6. /**
  7. * 推荐管理
  8. * Class Invite
  9. * @package app\user\controller
  10. */
  11. class Invite extends Controller
  12. {
  13. protected $table ="store_member";
  14. /**
  15. * 会员信息管理
  16. * @auth true
  17. * @menu true
  18. * @throws \think\Exception
  19. * @throws \think\db\exception\DataNotFoundException
  20. * @throws \think\db\exception\ModelNotFoundException
  21. * @throws \think\exception\DbException
  22. * @throws \think\exception\PDOException
  23. */
  24. public function index()
  25. {
  26. $this->title = '邀请排行榜';
  27. $create_at = $this->request->get('create_at');
  28. /* if (isset($create_at) && $create_at){
  29. $time = explode(' - ',$_GET['create_at']);
  30. $start_date_time = $time[0].' 00:00:00';
  31. $end_date_time = $time[1].' 23:59:59';
  32. $sql = "(select count(b.id) from store_member as b where b.pid=a.id and (b.create_at between '".$start_date_time."' and '".$end_date_time."')) as count";
  33. // echo $sql;die;
  34. }else{
  35. $sql = '(select count(b.id) from store_member as b where b.pid=a.id) as count';
  36. }*/
  37. $this->off_set = input('page',1) * input('limit',20)- input('limit',20);
  38. /* $this->_query($this->table.' as a')
  39. ->field('a.id,a.name,a.phone,a.pid,a.headimg,'.$sql)
  40. ->group('a.id')
  41. //->having('count>0')
  42. ->order('count desc')
  43. ->like('name,phone')
  44. ->page();*/
  45. $name = input('name');
  46. $phone = input('phone');
  47. $sel_id = 0;
  48. $where = 'id > 0';
  49. if($name || $phone) {
  50. $se = [];
  51. if($name) $s[] = ['name','=',$name];
  52. if($phone) $s[] = ['phone','=',$phone];
  53. $sel_id = Db::name('store_member')->where($se)->value('id');
  54. $where = 'id = '.$sel_id;
  55. }
  56. $create_at = $this->request->get('create_at');
  57. if(isset($create_at) && $create_at) {
  58. $time = explode(' - ',$_GET['create_at']);
  59. $start_date_time = $time[0];
  60. $end_date_time = $time[1];
  61. $this->_query($this->table)
  62. ->field('pid,count(*) count')
  63. ->where('pid','>',0)
  64. ->where('is_auth',1)
  65. ->where('bank_num is not null')
  66. ->where($where)
  67. ->whereBetweenTime('create_at',$start_date_time,$end_date_time)
  68. ->group('pid')
  69. ->order('count desc')
  70. ->page();
  71. }else{
  72. $this->_query($this->table)
  73. ->field('pid,count(*) count')
  74. ->where('pid','>',0)
  75. ->where('is_auth',1)
  76. ->where('bank_num is not null')
  77. ->where($where)
  78. ->group('pid')
  79. ->order('count desc')
  80. ->page();
  81. }
  82. }
  83. protected function _index_page_filter(&$data)
  84. {
  85. foreach ($data as &$value){
  86. $users_info = Db::name('store_member')->field('id,phone,headimg,name')->where('id',$value['pid'])->find();
  87. $value['id'] = $users_info['id'];
  88. $value['phone'] = $users_info['phone'];
  89. $value['name'] = $users_info['name'];
  90. $value['headimg'] = $users_info['headimg'];
  91. unset($value['pid']);
  92. }
  93. }
  94. /**
  95. * 导出EXCL
  96. * @remark 根据WHERE条件导出EXCL
  97. * @param array $post 查询条件所需值
  98. * @return array
  99. */
  100. public function get_excl()
  101. {
  102. set_time_limit(0);
  103. $name = input('name');
  104. $phone = input('phone');
  105. $where = 'id > 0';
  106. if($name || $phone) {
  107. $se = [];
  108. if($name) $s[] = ['name','=',$name];
  109. if($phone) $s[] = ['phone','=',$phone];
  110. $sel_id = Db::name('store_member')->where($se)->value('id');
  111. $where = 'id = '.$sel_id;
  112. }
  113. $create_at = $this->request->get('create_at');
  114. if(isset($create_at) && $create_at) {
  115. $time = explode(' - ',$_GET['create_at']);
  116. $start_date_time = $time[0];
  117. $end_date_time = $time[1];
  118. $list = Db::name('store_member')
  119. ->field('pid,count(*) count')
  120. ->where('pid','>',0)
  121. ->where('bank_num is not null')
  122. ->where('is_auth',1)
  123. ->where($where)
  124. ->whereBetweenTime('create_at',$start_date_time,$end_date_time)
  125. ->group('pid')
  126. ->order('count desc')
  127. ->select();
  128. }else{
  129. $list= Db::name('store_member')
  130. ->field('pid,count(*) count')
  131. ->where('pid','>',0)
  132. ->where('is_auth',1)
  133. ->where('bank_num is not null')
  134. ->where($where)
  135. ->group('pid')
  136. ->order('count desc')
  137. ->select();
  138. }
  139. $export = [];
  140. foreach ($list as &$value){
  141. $users_info = Db::name('store_member')->field('id,phone,headimg,name')->where('id',$value['pid'])->find();
  142. $value['id'] = $users_info['id'];
  143. $value['phone'] = $users_info['phone'];
  144. $value['name'] = $users_info['name'];
  145. $value['headimg'] = $users_info['headimg'];
  146. unset($value['pid']);
  147. $export[] = [
  148. $value['phone'],
  149. $value['name'],
  150. $value['count']
  151. ];
  152. }
  153. PHPExcelService::setExcelHeader(['手机号','会员','邀请数量'])
  154. ->setExcelTile('手机号导出' . date('YmdHis', time()), '手机号信息' . time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
  155. ->setExcelContent($export)
  156. ->ExcelSave();
  157. }
  158. public function power(){
  159. $ids = input('id');
  160. var_dump($ids);
  161. $goods_list = Db::name('store_collection')->where(['is_deleted'=>0,'status'=>1,'type'=>1])->order('id desc')->column('name','id');
  162. $this->fetch('',['ids'=>$ids,'goods_list'=>$goods_list]);
  163. }
  164. }