123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\user\controller;
- use app\common\library\PHPExcelService;
- use library\Controller;
- use think\Db;
- use function GuzzleHttp\Psr7\build_query;
- /**
- * 会员信息管理
- * Class Member
- * @package app\user\controller
- */
- class Member extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- protected $table = 'StoreMember';
- /**
- * 会员信息管理
- * @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 = '会员信息管理';
- $coll_id = $this->request->get('coll_id');
- $query = $this->_query($this->table)->where('is_deleted',0)->like('name,phone')->equal('status,vip,group,is_open_official_DDC');
- $query->dateBetween('create_at')
- ->when($coll_id,function ($query) use ($coll_id){
- $mids = Db::name('store_order_info')->where('c_id',$coll_id)->where('status','neq',2)->where('is_destruction',1)->column('mid');
- $query->whereIn('id',$mids);
- })
- ->order('id desc')->page();
- }
- /**
- * 数据列表处理
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _index_page_filter(&$data)
- {
- foreach ($data as $k=>&$v){
- $v['group_name'] = Db::name('store_member_group')->where('id',$v['group'])->value('name');
- $v['invite_count'] = Db::name($this->table)->where('pid',$v['id'])->count();
- }
- $this->group_list = Db::name('store_member_group')->select();
- $this->group_list = array_merge([['id'=>'','name'=>'全部会员']],$this->group_list);
- //藏品列表
- $this->coll_list = Db::name('store_collection')->where('is_deleted',0)->field('id,name')->select();
- $this->coll_list = array_merge([['id'=>'','name'=>'全部']],$this->coll_list);
- }
- //删除货主
- public function remove()
- {
- $this->_save($this->table, ['is_deleted' => '1']);
- }
- //禁用货主
- public function forbid()
- {
- $this->_save($this->table, ['status' => '0']);
- }
- //启用货主
- public function resume()
- {
- $this->_save($this->table, ['status' => '1']);
- }
- /**
- * 编辑抢购卡
- * @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 snap_card(){
- $this->title = '抢购卡';
- $this->_form($this->table, 'snap_card');
- }
- /**
- * 编辑积分
- * @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 integral(){
- $this->title = '积分变更';
- $this->_form($this->table, 'integral');
- }
- /**
- * 编辑转赠次数
- * @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 examples_number(){
- $this->title = '转赠次数';
- $this->_form($this->table, 'examples_number');
- }
- /**
- * 编辑vip
- * @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 vip(){
- $this->title = 'vip';
- $this->_form($this->table, 'vip');
- }
- /**
- * 编辑详情
- * @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 info(){
- $this->title = '详情';
- $this->_form($this->table, 'info');
- }
- /**
- * 编辑分组
- * @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 save_group(){
- $this->title = '编辑分组';
- $this->group_list = Db::name('store_member_group')->select();
- $this->_form($this->table, 'save_group');
- }
- /**
- * 一键抢购卡
- * @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 snap_cards(){
- $this->title = '抢购卡';
- $this->group_list = Db::name('store_member_group')->select();
- $this->_form($this->table, 'snap_cards');
- }
- /**
- * 一键分组
- * @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 grouping(){
- $this->title = '分组';
- $list = Db::name('store_member')
- ->where('is_deleted',0)
- ->where('group',0)
- ->field('id,name,phone')
- ->select();
- $group_list = Db::name('store_member_group')->select();
- $this->assign('list',$list);
- $this->assign('group_list',$group_list);
- $this->_form($this->table, 'grouping');
- }
- protected function _form_filter(&$data){
- if($this->request->isPost() && $this->request->action() == 'snap_card')
- {
- if($data['id']) {
- if($data['int_type'] == 4) {
- $result = memberMoneyChange($data['snap_card'],2,$data['id'],'后台人工调整',1);
- }else{
- $result = memberMoneyChange($data['snap_card'],2,$data['id'],'后台人工调整',0);
- }
- if ($result){
- setMembercard($data['id']);
- setMemberInfoHash($data['id']);
- $this->success('调整成功');
- }
- }
- }
- if($this->request->isPost() && $this->request->action() == 'snap_cards')
- {
- if (!isset($data['group']) || $data['group']==''){
- $this->error('请选择分组');
- }
- $user = Db::name('store_member')->where('is_deleted',0)->where('group',$data['group'])->select();
- foreach ($user as &$v){
- $result = memberMoneyChange($data['snap_card'],2,$v['id'],'后台人工调整',1);
- if ($result){
- setMembercard($v['id']);
- setMemberInfoHash($v['id']);
- }
- }
- $this->success('调整成功');
- }
- if($this->request->isPost() && $this->request->action() == 'integral')
- {
- if($data['id']) {
- if($data['int_type'] == 4) {
- $result = memberMoneyChange($data['integral'],1,$data['id'],'后台人工调整',1);
- }else{
- $result = memberMoneyChange($data['integral'],1,$data['id'],'后台人工调整',0);
- }
- if ($result){
- setMemberInfoHash($data['id']);
- $this->success('调整成功');
- }
- }
- }
- if($this->request->isPost() && $this->request->action() == 'examples_number')
- {
- if($data['id']) {
- if (Db::name('store_member')->where('id',$data['id'])->update(['examples_number'=>$data['examples_number'],'update_at'=>date('Y-m-d H:i:s')])){
- setMemberInfoHash($data['id']);
- $this->success('调整成功');
- }
- }
- }
- if($this->request->isPost() && $this->request->action() == 'vip')
- {
- if($data['id']) {
- if (Db::name('store_member')->where('id',$data['id'])->update(['vip'=>$data['vip'],'update_at'=>date('Y-m-d H:i:s')])){
- setMemberInfoHash($data['id']);
- $this->success('调整成功');
- }
- }
- }
- if($this->request->isPost() && $this->request->action() == 'info')
- {
- if($data['id']) {
- if ($data['password']!=''){
- $date['password'] = md5($data['password']);
- }
- if ($data['second_password']!=''){
- $date['second_password'] = md5($data['second_password']);
- }
- $date['update_at'] = date('Y-m-d H:i:s');
- if (Db::name('store_member')->where('id',$data['id'])->update($date)){
- setMemberInfoHash($data['id']);
- $this->success('编辑成功');
- }
- $this->error('编辑失败');
- }
- }
- if($this->request->isPost() && $this->request->action() == 'save_group')
- {
- if($data['id']) {
- if (!isset($data['group']) || $data['group']==''){
- $this->error('请选择分组');
- }
- $date['group'] = $data['group'];
- $date['update_at'] = date('Y-m-d H:i:s');
- if (Db::name('store_member')->where('id',$data['id'])->update($date)){
- setMemberInfoHash($data['id']);
- $this->success('编辑成功');
- }
- $this->error('编辑失败');
- }
- }
- if($this->request->isPost() && $this->request->action() == 'grouping')
- {
- if (!isset($data['group']) || $data['group']==''){
- $this->error('请选择分组');
- }
- if (!isset($data['users']) || $data['users']==''){
- $this->error('请选择用户');
- }
- if (Db::name('store_member')->whereIn('id',$data['users'])->update(['group'=>$data['group']])){
- $this->success('分组成功',url('/#/user/member/index'));
- }
- $this->error('分组失败',url('/#/user/member/index'));
- }
- }
- public function shoucang(){
- $id=$this->request->get('id');
- $this->title = Db::name($this->table)->where('id',$id)->value('name').'--收藏明细';
- $query = $this->_query('store_order_info')->where('mid',$id)->whereIn('status','1,3');
- $query->dateBetween('create_at')->order('id desc')->page();
- $this->fetch();
- }
- /**
- * 数据列表处理
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _shoucang_page_filter(&$data)
- {
- foreach ($data as $k=>&$v){
- $v['pro_info'] =json_decode($v['pro_info'],true);
- $info = Db::name('store_member')->where('id',$v['mid'])->field('name,phone')->find();
- $v['scz'] = $info['name'].'('.$info['phone'].')';
- $pro_info = Db::name('store_collection')->where('id',$v['c_id'])->field('one_given_day,other_given_day')->find();
- $log = Db::name('store_collect_examples_log')
- ->where('order_info_id',$v['id'])
- ->count();
- if (!$log){
- if ($pro_info['one_given_day']!=0){
- $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['one_given_day']*24*60*60));
- }else{
- $v['exam_time'] = $v['create_at'];
- }
- }else{
- if ($pro_info['other_given_day']!=0){
- $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['other_given_day']*24*60*60));
- }else{
- $v['exam_time'] = $v['create_at'];
- }
- }
- }
- }
- public function export(){
- $get_data = $this->request->get();
- $time = explode(' - ',$get_data['create_at']);
- $phone = $get_data['phone'];
- $name = $get_data['name'];
- $where = [];
- $where[] = ['status',1];
- $where[] = ['is_deleted',0];
- $where_str = ' status = 1 AND is_deleted = 0';
- if($name) $where_str .=' AND name like '."'%".$name."%'";
- if($phone) $where_str .=' AND phone like '."'%".$phone."%'";
- if($get_data['create_at']) $where_str.=" AND create_at > '".$time[0]."'AND create_at <'".$time[1]."'";
- //var_dump("SELECT name,headimg,true_name,phone,create_at,synopsis FROM store_member WHERE".$where_str.' ORDER BY id DESC');die();
- $data = Db::query("SELECT name,headimg,true_name,phone,create_at,synopsis FROM store_member WHERE".$where_str.' ORDER BY id DESC');
- if(empty($data)) $this->error('暂无可以导出的数据');
- foreach ($data as $k=>&$v) {
- if(!$v) $v = '--';
- }
- $field=array(
- 'A' => array('name', '昵称'),
- 'B' => array('true_name', '真实姓名'),
- 'C' => array('phone', '联系电话'),
- 'D' => array('synopsis', '个人简介'),
- 'E' => array('create_at', '注册时间'),
- //'F' => array('headimg', '头像地址'),
- );
- $this->phpExcelList($field,$data,'会员列表');
- }
- public function phpExcelList($field=[],$list=[],$title='文件'){
- $PHPExcel=new \PHPExcel();
- $PHPSheet=$PHPExcel->getActiveSheet();
- $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
- foreach($list as $key=>$value)
- {
- foreach($field as $k=>$v){
- if($key == 0){
- $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
- }
- $i=$key+2;
- $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
- }
- }
- $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
- header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
- header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
- header('Cache-Control: max-age=0'); //禁止缓存
- $PHPWriter->save("php://output"); //输出到浏览器
- }
- /**
- * 导出EXCL
- * @remark 根据WHERE条件导出EXCL
- * @param array $post 查询条件所需值
- * @return array
- */
- public function get_excl()
- {
- set_time_limit(0);
- $name = $this->request->get('name');
- $phone = $this->request->get('phone');
- $status = $this->request->get('status');
- $coll_id = $this->request->get('coll_id');
- $create_at = $this->request->get('create_at');
- $model = Db::name('store_member')
- ->where('is_deleted',0)
- ->when($name,function ($query) use ($name){
- $query->whereLike('name','%'.$name.'%');
- })
- ->when($phone,function ($query) use ($phone){
- $query->whereLike('phone','%'.$phone.'%');
- })
- ->when($status,function ($query) use ($status){
- $query->where('status',$status);
- })
- ->when($coll_id,function ($query) use ($coll_id){
- $mids = Db::name('store_order_info')->where('c_id',$coll_id)->where('status','neq',2)->where('is_destruction',1)->column('mid');
- $query->whereIn('id',$mids);
- });
- 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';
- $model->whereBetweenTime('a.create_at',$start_date_time,$end_date_time);
- }
- $list =$model->field('id,name,phone')
- ->select();
- $export = [];
- if (is_array($list)) {
- foreach ($list as $index => $item) {
- $export[] = [
- $item['phone']
- ];
- }
- }
- PHPExcelService::setExcelHeader(['手机号'])
- ->setExcelTile('手机号导出' . date('YmdHis', time()), '手机号信息' . time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
- ->setExcelContent($export)
- ->ExcelSave();
- }
- }
|