Member.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\user\controller;
  15. use app\common\model\User;
  16. use app\common\model\UserLevel;
  17. use app\common\model\UserLevelRank;
  18. use library\Controller;
  19. use library\tools\Data;
  20. use think\Db;
  21. use function AlibabaCloud\Client\value;
  22. /**
  23. * 会员信息管理
  24. * Class Member
  25. * @package app\Member\controller
  26. */
  27. class Member extends Controller
  28. {
  29. /**
  30. * 绑定数据表
  31. * @var string
  32. */
  33. protected $table = 'StoreMember';
  34. /**
  35. * 会员信息管理
  36. * @auth true
  37. * @menu true
  38. * @throws \think\Exception
  39. * @throws \think\db\exception\DataNotFoundException
  40. * @throws \think\db\exception\ModelNotFoundException
  41. * @throws \think\exception\DbException
  42. * @throws \think\exception\PDOException
  43. */
  44. public function index()
  45. {
  46. $this->search_url = strtolower($this->request->controller()).'/index_search';
  47. $this->title = '会员信息管理';
  48. $this->level_arr = UserLevel::column('name','id');
  49. $where = [];
  50. $where[] = ['m.is_deleted','=',0];
  51. if($name = input('get.name')) $where[] = ['m.name','like','%'.$name.'%'];
  52. if($phone = input('get.phone')) $where[] = ['m.phone','like','%'.$phone.'%'];
  53. if($level_id = input('get.level_id')) $where[] = ['m.level_id','=',$level_id];
  54. $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";
  55. $create_at = input('create_at');
  56. $query = $this->_query($this->table)
  57. ->field($field)
  58. ->alias('m')
  59. ->leftJoin('UserWallet w','m.id =w.user_id')
  60. ->where($where)
  61. ->when($create_at,function ($q)use ($create_at){
  62. if($create_at){
  63. $time = explode(' - ',$_GET['create_at']);
  64. $start_date_time = $time[0];
  65. $end_date_time = $time[1];
  66. $q->whereBetweenTime('m.create_at',$start_date_time,$end_date_time);
  67. }
  68. })->order('id desc')->page();
  69. }
  70. /**
  71. * 数据列表处理
  72. * @auth true
  73. * @menu true
  74. * @param array $data
  75. * @throws \think\db\exception\DataNotFoundException
  76. * @throws \think\db\exception\ModelNotFoundException
  77. * @throws \think\exception\DbException
  78. */
  79. protected function _index_page_filter(&$data)
  80. {
  81. $level_arr = UserLevel::column('name','id');
  82. foreach ($data as $k=>&$v){
  83. $level_rank= UserLevelRank::where([['user_id','=',$v['id']],['end_time','>',time()]])->order('level_id desc')->find();
  84. $v['level_id'] = $level_rank ? $level_rank->level_id : 0 ;
  85. $v['level_name'] = $level_rank ? $level_arr[$level_rank->level_id] : '--';
  86. $v['end_date'] = $level_rank ? $level_rank->end_date:'--';
  87. }
  88. }
  89. /**
  90. * 删除
  91. * @auth true
  92. * @menu true
  93. * @param array $data
  94. * @throws \think\db\exception\DataNotFoundException
  95. * @throws \think\db\exception\ModelNotFoundException
  96. * @throws \think\exception\DbException
  97. */
  98. public function remove()
  99. {
  100. $this->_save($this->table, ['is_deleted' => '1','phone'=>'','email'=>'']);
  101. }
  102. /**
  103. * 禁用
  104. * @auth true
  105. * @menu true
  106. * @param array $data
  107. * @throws \think\db\exception\DataNotFoundException
  108. * @throws \think\db\exception\ModelNotFoundException
  109. * @throws \think\exception\DbException
  110. */
  111. public function forbid()
  112. {
  113. $this->_save($this->table, ['status' => '0']);
  114. }
  115. /**
  116. * 启用
  117. * @auth true
  118. * @menu true
  119. * @param array $data
  120. * @throws \think\db\exception\DataNotFoundException
  121. * @throws \think\db\exception\ModelNotFoundException
  122. * @throws \think\exception\DbException
  123. */
  124. public function resume()
  125. {
  126. $this->_save($this->table, ['status' => '1']);
  127. }
  128. /**
  129. * 添加
  130. * @auth true
  131. * @menu true
  132. * @param array $data
  133. * @throws \think\db\exception\DataNotFoundException
  134. * @throws \think\db\exception\ModelNotFoundException
  135. * @throws \think\exception\DbException
  136. */
  137. public function add(){
  138. $this->title = '添加';
  139. $this->level_arr = UserLevel::column('name','id');
  140. if($this->request->isPost())
  141. {
  142. list($data) = [$this->request->post()];
  143. $check_where =[];
  144. $check_where[] = $data['account_type'] == 1 ? ['email','=',$data['account']] : ['phone','=',$data['account']];
  145. $user_info = User::where($check_where)->find();
  146. if($user_info) $this->error('用户已存在');
  147. $user_add= [];
  148. $data['account_type'] == 1 ? $user_add['email'] = $data['account'] : $user_add['phone'] = $data['account'];
  149. $user_add['name'] = $data['name'];
  150. $user_add['account_type'] = $data['account_type'];
  151. $new_user = User::create($user_add);
  152. if($data['level_id'] && intval($data['days']) > 0) {
  153. 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']))]);
  154. }
  155. $this->success('添加成功');
  156. }
  157. $this->_form($this->table, 'add');
  158. }
  159. /**
  160. *
  161. * 编辑
  162. * @auth true
  163. * @menu true
  164. * @param array $data
  165. * @throws \think\db\exception\DataNotFoundException
  166. * @throws \think\db\exception\ModelNotFoundException
  167. * @throws \think\exception\DbException
  168. */
  169. public function edit()
  170. {
  171. $this->title = '编辑';
  172. $this->level_arr = UserLevel::column('name','id');
  173. $this->_form($this->table, 'form');
  174. }
  175. /**
  176. * 钱包管理
  177. * @auth true
  178. * @menu true
  179. * @param array $data
  180. * @throws \think\db\exception\DataNotFoundException
  181. * @throws \think\db\exception\ModelNotFoundException
  182. * @throws \think\exception\DbException
  183. */
  184. public function wallet()
  185. {
  186. $this->title = '钱包';
  187. $this->_form($this->table, 'wallet');
  188. }
  189. protected function _form_filter(&$data){
  190. if($this->request->isGet() && $this->request->action() =='edit') {
  191. $data['rank_id'] = UserLevelRank::getUserVip($data['id']);
  192. }
  193. }
  194. public function export(){
  195. $get_data = $this->request->get();
  196. $time = explode(' - ',$get_data['create_at']);
  197. $phone = $get_data['phone'];
  198. $name = $get_data['name'];
  199. $where = [];
  200. $where[] = ['status',1];
  201. $where[] = ['is_deleted',0];
  202. $where_str = ' status = 1 AND is_deleted = 0';
  203. if($name) $where_str .=' AND name like '."'%".$name."%'";
  204. if($phone) $where_str .=' AND phone like '."'%".$phone."%'";
  205. if($get_data['create_at']) $where_str.=" AND create_at > '".$time[0]."'AND create_at <'".$time[1]."'";
  206. $data = Db::query("SELECT name,headimg,email,phone,create_at,account_type FROM dd_store_member WHERE".$where_str.' ORDER BY id DESC');
  207. if(empty($data)) $this->error('暂无可以导出的数据');
  208. foreach ($data as $k=>&$v) {
  209. if(!$v) $v = '--';
  210. }
  211. $field=array(
  212. 'A' => array('name', '昵称'),
  213. 'B' => array('email', '邮箱'),
  214. 'C' => array('phone', '电话'),
  215. 'E' => array('create_at', '注册时间'),
  216. );
  217. $this->phpExcelList($field,$data,'会员列表');
  218. }
  219. public function phpExcelList($field=[],$list=[],$title='文件'){
  220. $PHPExcel=new \PHPExcel();
  221. $PHPSheet=$PHPExcel->getActiveSheet();
  222. $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
  223. foreach($list as $key=>$value)
  224. {
  225. foreach($field as $k=>$v){
  226. if($key == 0){
  227. $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
  228. }
  229. $i=$key+2;
  230. $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
  231. }
  232. }
  233. $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
  234. header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
  235. header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
  236. header('Cache-Control: max-age=0'); //禁止缓存
  237. $PHPWriter->save("php://output"); //输出到浏览器
  238. }
  239. /**
  240. * 导入
  241. * @auth true
  242. * @menu true
  243. * @throws \think\Exception
  244. * @throws \think\db\exception\DataNotFoundException
  245. * @throws \think\db\exception\ModelNotFoundException
  246. * @throws \think\exception\DbException
  247. * @throws \think\exception\PDOException
  248. */
  249. public function import()
  250. {
  251. $file = request()->file('file');
  252. $file_size = $_FILES['file']['size'];
  253. if ($file_size > 5 * 1024 * 1024) $this->error('文件大小不能超过5M');
  254. //限制上传表格类型
  255. $fileExtendName = substr(strrchr($_FILES['file']["name"], '.'), 1);
  256. if ($fileExtendName != 'xls' && $fileExtendName != 'xlsx') $this->error('必须为excel表格,且必须为xls格式!');
  257. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
  258. if (!file_exists($dir)) mkdir($dir, 0777, true);
  259. $info = $file->move($dir);
  260. $fileName = $info->getSaveName();
  261. $filePath = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . "/public/upload/{$fileName}";
  262. /* $reader = \PHPExcel_IOFactory::createReader('Excel2007');
  263. if(!$reader->canRead($filePath)) $reader = \PHPExcel_IOFactory::createReader('Excel2015');
  264. */
  265. $objPHPExcelReader = \PHPExcel_IOFactory::load($filePath);
  266. $sheet = $objPHPExcelReader->getSheet(0); // 读取第一个工作表(编号从 0 开始)
  267. $highestRow = $sheet->getHighestRow(); // 取得总行数
  268. $arr = array('A','B','C','D','E');
  269. // 一次读取一列
  270. $res_arr = [];
  271. for ($row = 2; $row <= $highestRow; $row++) {
  272. $row_arr = array();
  273. for ($column = 0 ;$column < count($arr) ; $column++) {
  274. $val = $sheet->getCellByColumnAndRow($column, $row)->getValue();
  275. $row_arr[] = $val;
  276. }
  277. $res_arr[] = $row_arr;
  278. }
  279. $success_num = 0;
  280. // name account account_type level_id days
  281. foreach ($res_arr as $new_user) {
  282. $check_where[] = $new_user['2'] == 1 ? ['email','=',trim($new_user['1'])]: ['phone','=',trim($new_user['1'])];
  283. $ck_res = User::where($check_where)->value('id');
  284. if($ck_res){
  285. Data::save('UserLevelRank',[
  286. 'user_id'=>$ck_res,
  287. 'level_id'=>intval($new_user['3']),
  288. 'start_time'=>time(),
  289. 'end_time'=>time()+86400* intval($new_user['4']),
  290. 'end_date'=>date('Y-m-d H:i:s',time()+86400*intval($new_user['4']))],'user_id',['user_id'=>$ck_res]);
  291. $success_num++;
  292. User::where('id',$ck_res)->update(['level_id'=>intval($new_user['3']),'level_exp'=>time()+86400* intval($new_user['4'])]);
  293. continue;
  294. }
  295. $user_add= [];
  296. $new_user['2'] == 1 ? $user_add['email'] = trim($new_user['1']) : $user_add['phone'] = trim($new_user['1']);
  297. $user_add['name'] = $new_user['0'];
  298. $user_add['account_type'] = $new_user['2'];
  299. $add_res = User::create($user_add);
  300. if($new_user['3'] > 0 && intval($new_user[4]) > 0) {
  301. 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']))]);
  302. $success_num++;
  303. }
  304. }
  305. $this->success('成功导入会员:'.$success_num);
  306. }
  307. }