123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- <?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\model\User;
- use app\common\model\UserLevel;
- use app\common\model\UserLevelRank;
- use library\Controller;
- use library\tools\Data;
- use think\Db;
- use function AlibabaCloud\Client\value;
- /**
- * 会员信息管理
- * Class Member
- * @package app\Member\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->search_url = strtolower($this->request->controller()).'/index_search';
- $this->title = '会员信息管理';
- $this->level_arr = UserLevel::column('name','id');
- $where = [];
- $where[] = ['m.is_deleted','=',0];
- if($name = input('get.name')) $where[] = ['m.name','like','%'.$name.'%'];
- if($phone = input('get.phone')) $where[] = ['m.phone','like','%'.$phone.'%'];
- if($level_id = input('get.level_id')) $where[] = ['m.level_id','=',$level_id];
- $field="m.id,m.openid,m.name,m.headimg,m.level_exp,m.phone,m.status,m.create_at,w.growth,w.integral,w.money";
- $create_at = input('create_at');
- $query = $this->_query($this->table)
- ->field($field)
- ->alias('m')
- ->leftJoin('UserWallet w','m.id =w.user_id')
- ->where($where)
- ->when($create_at,function ($q)use ($create_at){
- if($create_at){
- $time = explode(' - ',$_GET['create_at']);
- $start_date_time = $time[0];
- $end_date_time = $time[1];
- $q->whereBetweenTime('m.create_at',$start_date_time,$end_date_time);
- }
- })->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)
- {
- $level_arr = UserLevel::column('name','id');
- foreach ($data as $k=>&$v){
- $level_rank= UserLevelRank::where([['user_id','=',$v['id']],['end_time','>',time()]])->order('level_id desc')->find();
- $v['level_id'] = $level_rank ? $level_rank->level_id : 0 ;
- $v['level_name'] = $level_rank ? $level_arr[$level_rank->level_id] : '--';
- $v['end_date'] = $level_rank ? $level_rank->end_date:'--';
- }
- }
- /**
- * 删除
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function remove()
- {
- $this->_save($this->table, ['is_deleted' => '1','phone'=>'','email'=>'']);
- }
- /**
- * 禁用
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function forbid()
- {
- $this->_save($this->table, ['status' => '0']);
- }
- /**
- * 启用
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function resume()
- {
- $this->_save($this->table, ['status' => '1']);
- }
- /**
- * 添加
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function add(){
- $this->title = '添加';
- $this->level_arr = UserLevel::column('name','id');
- if($this->request->isPost())
- {
- list($data) = [$this->request->post()];
- $check_where =[];
- $check_where[] = $data['account_type'] == 1 ? ['email','=',$data['account']] : ['phone','=',$data['account']];
- $user_info = User::where($check_where)->find();
- if($user_info) $this->error('用户已存在');
- $user_add= [];
- $data['account_type'] == 1 ? $user_add['email'] = $data['account'] : $user_add['phone'] = $data['account'];
- $user_add['name'] = $data['name'];
- $user_add['account_type'] = $data['account_type'];
- $new_user = User::create($user_add);
- if($data['level_id'] && intval($data['days']) > 0) {
- UserLevelRank::create(['user_id'=>$new_user->id,'level_id'=>$data['level_id'],'start_time'=>time(),'end_time'=>time()+86400* intval($data['days']),'end_date'=>date('Y-m-d H:i:s',time()+86400*intval($data['days']))]);
- }
- $this->success('添加成功');
- }
- $this->_form($this->table, 'add');
- }
- /**
- *
- * 编辑
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function edit()
- {
- $this->title = '编辑';
- $this->level_arr = UserLevel::column('name','id');
- $this->_form($this->table, 'form');
- }
- /**
- * 钱包管理
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function wallet()
- {
- $this->title = '钱包';
- $this->_form($this->table, 'wallet');
- }
- protected function _form_filter(&$data){
- if($this->request->isGet() && $this->request->action() =='edit') {
- $data['rank_id'] = UserLevelRank::getUserVip($data['id']);
- }
- }
- 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]."'";
- $data = Db::query("SELECT name,headimg,email,phone,create_at,account_type FROM dd_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('email', '邮箱'),
- 'C' => array('phone', '电话'),
- 'E' => array('create_at', '注册时间'),
- );
- $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"); //输出到浏览器
- }
- /**
- * 导入
- * @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 import()
- {
- $file = request()->file('file');
- $file_size = $_FILES['file']['size'];
- if ($file_size > 5 * 1024 * 1024) $this->error('文件大小不能超过5M');
- //限制上传表格类型
- $fileExtendName = substr(strrchr($_FILES['file']["name"], '.'), 1);
- if ($fileExtendName != 'xls' && $fileExtendName != 'xlsx') $this->error('必须为excel表格,且必须为xls格式!');
- $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
- if (!file_exists($dir)) mkdir($dir, 0777, true);
- $info = $file->move($dir);
- $fileName = $info->getSaveName();
- $filePath = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . "/public/upload/{$fileName}";
- /* $reader = \PHPExcel_IOFactory::createReader('Excel2007');
- if(!$reader->canRead($filePath)) $reader = \PHPExcel_IOFactory::createReader('Excel2015');
- */
- $objPHPExcelReader = \PHPExcel_IOFactory::load($filePath);
- $sheet = $objPHPExcelReader->getSheet(0); // 读取第一个工作表(编号从 0 开始)
- $highestRow = $sheet->getHighestRow(); // 取得总行数
- $arr = array('A','B','C','D','E');
- // 一次读取一列
- $res_arr = [];
- for ($row = 2; $row <= $highestRow; $row++) {
- $row_arr = array();
- for ($column = 0 ;$column < count($arr) ; $column++) {
- $val = $sheet->getCellByColumnAndRow($column, $row)->getValue();
- $row_arr[] = $val;
- }
- $res_arr[] = $row_arr;
- }
- $success_num = 0;
- // name account account_type level_id days
- foreach ($res_arr as $new_user) {
- $check_where[] = $new_user['2'] == 1 ? ['email','=',trim($new_user['1'])]: ['phone','=',trim($new_user['1'])];
- $ck_res = User::where($check_where)->value('id');
- if($ck_res){
- Data::save('UserLevelRank',[
- 'user_id'=>$ck_res,
- 'level_id'=>intval($new_user['3']),
- 'start_time'=>time(),
- 'end_time'=>time()+86400* intval($new_user['4']),
- 'end_date'=>date('Y-m-d H:i:s',time()+86400*intval($new_user['4']))],'user_id',['user_id'=>$ck_res]);
- $success_num++;
- User::where('id',$ck_res)->update(['level_id'=>intval($new_user['3']),'level_exp'=>time()+86400* intval($new_user['4'])]);
- continue;
- }
- $user_add= [];
- $new_user['2'] == 1 ? $user_add['email'] = trim($new_user['1']) : $user_add['phone'] = trim($new_user['1']);
- $user_add['name'] = $new_user['0'];
- $user_add['account_type'] = $new_user['2'];
- $add_res = User::create($user_add);
- if($new_user['3'] > 0 && intval($new_user[4]) > 0) {
- UserLevelRank::create(['user_id'=>$add_res->id,'level_id'=>$new_user['3'],'start_time'=>time(),'end_time'=>time()+86400* intval($new_user['4']),'end_date'=>date('Y-m-d H:i:s',time()+86400*intval($new_user['4']))]);
- $success_num++;
- }
- }
- $this->success('成功导入会员:'.$success_num);
- }
- }
|