123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- <?php
- namespace app\user\controller;
- use app\common\library\PHPExcelService;
- use library\Controller;
- use think\Db;
- /**
- * 推荐管理
- * Class Invite
- * @package app\user\controller
- */
- class Invite extends Controller
- {
- protected $table ="store_member";
- /**
- * 会员信息管理
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- $this->title = '邀请排行榜';
- $create_at = $this->request->get('create_at');
- /* if (isset($create_at) && $create_at){
- $time = explode(' - ',$_GET['create_at']);
- $start_date_time = $time[0].' 00:00:00';
- $end_date_time = $time[1].' 23:59:59';
- $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";
- // echo $sql;die;
- }else{
- $sql = '(select count(b.id) from store_member as b where b.pid=a.id) as count';
- }*/
- $this->off_set = input('page',1) * input('limit',20)- input('limit',20);
- /* $this->_query($this->table.' as a')
- ->field('a.id,a.name,a.phone,a.pid,a.headimg,'.$sql)
- ->group('a.id')
- //->having('count>0')
- ->order('count desc')
- ->like('name,phone')
- ->page();*/
- $name = input('name');
- $phone = input('phone');
- $sel_id = 0;
- $where = 'id > 0';
- if($name || $phone) {
- $se = [];
- if($name) $s[] = ['name','=',$name];
- if($phone) $s[] = ['phone','=',$phone];
- $sel_id = Db::name('store_member')->where($se)->value('id');
- $where = 'id = '.$sel_id;
- }
- $create_at = $this->request->get('create_at');
- if(isset($create_at) && $create_at) {
- $time = explode(' - ',$_GET['create_at']);
- $start_date_time = $time[0];
- $end_date_time = $time[1];
- $this->_query($this->table)
- ->field('pid,count(*) count')
- ->where('pid','>',0)
- ->where('is_auth',1)
- ->where('bank_num is not null')
- ->where($where)
- ->whereBetweenTime('create_at',$start_date_time,$end_date_time)
- ->group('pid')
- ->order('count desc')
- ->page();
- }else{
- $this->_query($this->table)
- ->field('pid,count(*) count')
- ->where('pid','>',0)
- ->where('is_auth',1)
- ->where('bank_num is not null')
- ->where($where)
- ->group('pid')
- ->order('count desc')
- ->page();
- }
- }
- protected function _index_page_filter(&$data)
- {
- foreach ($data as &$value){
- $users_info = Db::name('store_member')->field('id,phone,headimg,name')->where('id',$value['pid'])->find();
- $value['id'] = $users_info['id'];
- $value['phone'] = $users_info['phone'];
- $value['name'] = $users_info['name'];
- $value['headimg'] = $users_info['headimg'];
- unset($value['pid']);
- }
- }
- /**
- * 导出EXCL
- * @remark 根据WHERE条件导出EXCL
- * @param array $post 查询条件所需值
- * @return array
- */
- public function get_excl()
- {
- set_time_limit(0);
- $name = input('name');
- $phone = input('phone');
- $where = 'id > 0';
- if($name || $phone) {
- $se = [];
- if($name) $s[] = ['name','=',$name];
- if($phone) $s[] = ['phone','=',$phone];
- $sel_id = Db::name('store_member')->where($se)->value('id');
- $where = 'id = '.$sel_id;
- }
- $create_at = $this->request->get('create_at');
- if(isset($create_at) && $create_at) {
- $time = explode(' - ',$_GET['create_at']);
- $start_date_time = $time[0];
- $end_date_time = $time[1];
- $list = Db::name('store_member')
- ->field('pid,count(*) count')
- ->where('pid','>',0)
- ->where('bank_num is not null')
- ->where('is_auth',1)
- ->where($where)
- ->whereBetweenTime('create_at',$start_date_time,$end_date_time)
- ->group('pid')
- ->order('count desc')
- ->select();
- }else{
- $list= Db::name('store_member')
- ->field('pid,count(*) count')
- ->where('pid','>',0)
- ->where('is_auth',1)
- ->where('bank_num is not null')
- ->where($where)
- ->group('pid')
- ->order('count desc')
- ->select();
- }
- $export = [];
- foreach ($list as &$value){
- $users_info = Db::name('store_member')->field('id,phone,headimg,name')->where('id',$value['pid'])->find();
- $value['id'] = $users_info['id'];
- $value['phone'] = $users_info['phone'];
- $value['name'] = $users_info['name'];
- $value['headimg'] = $users_info['headimg'];
- unset($value['pid']);
- $export[] = [
- $value['phone'],
- $value['name'],
- $value['count']
- ];
- }
- PHPExcelService::setExcelHeader(['手机号','会员','邀请数量'])
- ->setExcelTile('手机号导出' . date('YmdHis', time()), '手机号信息' . time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
- ->setExcelContent($export)
- ->ExcelSave();
- }
- public function power(){
- $ids = input('id');
- var_dump($ids);
- $goods_list = Db::name('store_collection')->where(['is_deleted'=>0,'status'=>1,'type'=>1])->order('id desc')->column('name','id');
- $this->fetch('',['ids'=>$ids,'goods_list'=>$goods_list]);
- }
- }
|