123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <?php
- namespace app\user\controller;
- use app\common\model\User;
- use library\Controller;
- use think\Db;
- /**
- * 会员信息管理
- * 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 = '会员信息管理';
- $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";
- $query = $this->_query($this->table)
- ->field($field)
- ->alias('m')
- ->leftJoin('UserWallet w','m.id =w.user_id')
- ->where($where)
- ->dateBetween('create_at')->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){
- }
- }
- /**
- * 删除
- * @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->_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->_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') {
- }
- }
- 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"); //输出到浏览器
- }
- }
|