Member.php 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688
  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\library\PHPExcelService;
  16. use library\Controller;
  17. use think\Db;
  18. use function GuzzleHttp\Psr7\build_query;
  19. /**
  20. * 会员信息管理
  21. * Class Member
  22. * @package app\user\controller
  23. */
  24. class Member extends Controller
  25. {
  26. /**
  27. * 绑定数据表
  28. * @var string
  29. */
  30. protected $table = 'StoreMember';
  31. /**
  32. * 会员信息管理
  33. * @auth true
  34. * @menu true
  35. * @throws \think\Exception
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @throws \think\exception\DbException
  39. * @throws \think\exception\PDOException
  40. */
  41. public function index()
  42. {
  43. $this->title = '会员信息管理';
  44. $id_order = input('id_order') == 1 ? 'asc' : 'desc';
  45. $money_order = input('money_order') == 1 ? 'asc' : 'desc';
  46. $this->total_money = Db::name('store_member')->where('is_deleted',0)->sum('money');
  47. $query = $this->_query($this->table)->where('is_deleted',0)
  48. ->like('name,phone')
  49. ->equal('status,vip,group,is_open_official_DDC')->dateBetween('create_at');
  50. if(input('money_order')){
  51. $query->order("money $money_order")->page();
  52. }else{
  53. $query->order("id $id_order")->page();
  54. }
  55. }
  56. /**
  57. * 数据列表处理
  58. * @auth true
  59. * @menu true
  60. * @param array $data
  61. * @throws \think\db\exception\DataNotFoundException
  62. * @throws \think\db\exception\ModelNotFoundException
  63. * @throws \think\exception\DbException
  64. */
  65. protected function _index_page_filter(&$data)
  66. {
  67. foreach ($data as $k=>&$v){
  68. $v['group_name'] = Db::name('store_member_group')->where('id',$v['group'])->value('name');
  69. $v['invite_count'] = Db::name($this->table)->where('pid',$v['id'])->count();
  70. $v['vip_name'] = $v['vip'] > 0 ? Db::name('store_vip')->where('id',$v['vip'])->value('name') : '普通会员';
  71. }
  72. $this->group_list = Db::name('store_member_group')->select();
  73. $this->group_list = array_merge([['id'=>'','name'=>'全部会员']],$this->group_list);
  74. }
  75. //删除货主
  76. public function remove()
  77. {
  78. $this->_save($this->table, ['is_deleted' => '1']);
  79. }
  80. //禁用货主
  81. public function forbid()
  82. {
  83. $this->_save($this->table, ['status' => '0']);
  84. }
  85. //启用货主
  86. public function resume()
  87. {
  88. $this->_save($this->table, ['status' => '1']);
  89. }
  90. /**
  91. * 编辑抢购卡
  92. * @auth true
  93. * @menu true
  94. * @throws \think\Exception
  95. * @throws \think\db\exception\DataNotFoundException
  96. * @throws \think\db\exception\ModelNotFoundException
  97. * @throws \think\exception\DbException
  98. * @throws \think\exception\PDOException
  99. */
  100. public function snap_card(){
  101. $this->title = '抢购卡';
  102. $this->_form($this->table, 'snap_card');
  103. }
  104. /**
  105. * 编辑积分
  106. * @auth true
  107. * @menu true
  108. * @throws \think\Exception
  109. * @throws \think\db\exception\DataNotFoundException
  110. * @throws \think\db\exception\ModelNotFoundException
  111. * @throws \think\exception\DbException
  112. * @throws \think\exception\PDOException
  113. */
  114. public function integral(){
  115. $this->title = '积分变更';
  116. $this->_form($this->table, 'integral');
  117. }
  118. /**
  119. * 编辑转赠次数
  120. * @auth true
  121. * @menu true
  122. * @throws \think\Exception
  123. * @throws \think\db\exception\DataNotFoundException
  124. * @throws \think\db\exception\ModelNotFoundException
  125. * @throws \think\exception\DbException
  126. * @throws \think\exception\PDOException
  127. */
  128. public function examples_number(){
  129. $this->title = '转赠次数';
  130. $this->_form($this->table, 'examples_number');
  131. }
  132. /**
  133. * 编辑vip
  134. * @auth true
  135. * @menu true
  136. * @throws \think\Exception
  137. * @throws \think\db\exception\DataNotFoundException
  138. * @throws \think\db\exception\ModelNotFoundException
  139. * @throws \think\exception\DbException
  140. * @throws \think\exception\PDOException
  141. */
  142. public function vip(){
  143. $this->title = 'vip';
  144. $this->_form($this->table, 'vip');
  145. }
  146. /**
  147. * 编辑详情
  148. * @auth true
  149. * @menu true
  150. * @throws \think\Exception
  151. * @throws \think\db\exception\DataNotFoundException
  152. * @throws \think\db\exception\ModelNotFoundException
  153. * @throws \think\exception\DbException
  154. * @throws \think\exception\PDOException
  155. */
  156. public function info(){
  157. $this->title = '详情';
  158. $this->_form($this->table, 'info');
  159. }
  160. /**
  161. * 编辑分组
  162. * @auth true
  163. * @menu true
  164. * @throws \think\Exception
  165. * @throws \think\db\exception\DataNotFoundException
  166. * @throws \think\db\exception\ModelNotFoundException
  167. * @throws \think\exception\DbException
  168. * @throws \think\exception\PDOException
  169. */
  170. public function save_group(){
  171. $this->title = '编辑分组';
  172. $this->group_list = Db::name('store_member_group')->select();
  173. $this->_form($this->table, 'save_group');
  174. }
  175. /**
  176. * 一键抢购卡
  177. * @auth true
  178. * @menu true
  179. * @throws \think\Exception
  180. * @throws \think\db\exception\DataNotFoundException
  181. * @throws \think\db\exception\ModelNotFoundException
  182. * @throws \think\exception\DbException
  183. * @throws \think\exception\PDOException
  184. */
  185. public function snap_cards(){
  186. $this->title = '抢购卡';
  187. $this->group_list = Db::name('store_member_group')->select();
  188. $this->_form($this->table, 'snap_cards');
  189. }
  190. /**
  191. * 一键分组
  192. * @auth true
  193. * @menu true
  194. * @throws \think\Exception
  195. * @throws \think\db\exception\DataNotFoundException
  196. * @throws \think\db\exception\ModelNotFoundException
  197. * @throws \think\exception\DbException
  198. * @throws \think\exception\PDOException
  199. */
  200. public function grouping(){
  201. $this->title = '分组';
  202. $list = Db::name('store_member')
  203. ->where('is_deleted',0)
  204. ->where('group',0)
  205. ->field('id,name,phone')
  206. ->select();
  207. $group_list = Db::name('store_member_group')->select();
  208. $this->assign('list',$list);
  209. $this->assign('group_list',$group_list);
  210. $this->_form($this->table, 'grouping');
  211. }
  212. /**
  213. * 钱包管理
  214. * @auth true
  215. * @menu true
  216. * @param array $data
  217. * @throws \think\db\exception\DataNotFoundException
  218. * @throws \think\db\exception\ModelNotFoundException
  219. * @throws \think\exception\DbException
  220. */
  221. public function wallet()
  222. {
  223. $this->title = '钱包';
  224. $this->_form($this->table, 'wallet');
  225. }
  226. protected function _form_filter(&$data){
  227. if($this->request->isPost() && $this->request->action() == 'snap_card')
  228. {
  229. if($data['id']) {
  230. if($data['int_type'] == 4) {
  231. $result = memberMoneyChange($data['snap_card'],2,$data['id'],'后台人工调整',1);
  232. }else{
  233. $result = memberMoneyChange($data['snap_card'],2,$data['id'],'后台人工调整',0);
  234. }
  235. if ($result){
  236. setMembercard($data['id']);
  237. setMemberInfoHash($data['id']);
  238. $this->success('调整成功');
  239. }
  240. }
  241. }
  242. if($this->request->isPost() && $this->request->action() == 'snap_cards')
  243. {
  244. if (!isset($data['group']) || $data['group']==''){
  245. $this->error('请选择分组');
  246. }
  247. $user = Db::name('store_member')->where('is_deleted',0)->where('group',$data['group'])->select();
  248. foreach ($user as &$v){
  249. $result = memberMoneyChange($data['snap_card'],2,$v['id'],'后台人工调整',1);
  250. if ($result){
  251. setMembercard($v['id']);
  252. setMemberInfoHash($v['id']);
  253. }
  254. }
  255. $this->success('调整成功');
  256. }
  257. if($this->request->isPost() && $this->request->action() == 'integral')
  258. {
  259. if($data['id']) {
  260. if($data['int_type'] == 4) {
  261. $result = memberMoneyChange($data['integral'],1,$data['id'],'后台人工调整',1);
  262. }else{
  263. $result = memberMoneyChange($data['integral'],1,$data['id'],'后台人工调整',0);
  264. }
  265. if ($result){
  266. setMemberInfoHash($data['id']);
  267. $this->success('调整成功');
  268. }
  269. }
  270. }
  271. if($this->request->isPost() && $this->request->action() == 'examples_number')
  272. {
  273. if($data['id']) {
  274. if (Db::name('store_member')->where('id',$data['id'])->update(['examples_number'=>$data['examples_number'],'update_at'=>date('Y-m-d H:i:s')])){
  275. setMemberInfoHash($data['id']);
  276. $this->success('调整成功');
  277. }
  278. }
  279. }
  280. if($this->request->isPost() && $this->request->action() == 'vip')
  281. {
  282. if($data['id']) {
  283. if (Db::name('store_member')->where('id',$data['id'])->update(['vip'=>$data['vip'],'update_at'=>date('Y-m-d H:i:s')])){
  284. setMemberInfoHash($data['id']);
  285. $this->success('调整成功');
  286. }
  287. }
  288. }
  289. if($this->request->isPost() && $this->request->action() == 'info')
  290. {
  291. if($data['id']) {
  292. if ($data['password']!=''){
  293. $date['password'] = md5($data['password']);
  294. }
  295. if ($data['second_password']!=''){
  296. $date['second_password'] = md5($data['second_password']);
  297. }
  298. $date['update_at'] = date('Y-m-d H:i:s');
  299. if (Db::name('store_member')->where('id',$data['id'])->update($date)){
  300. setMemberInfoHash($data['id']);
  301. $this->success('编辑成功');
  302. }
  303. $this->error('编辑失败');
  304. }
  305. }
  306. if($this->request->isPost() && $this->request->action() == 'save_group')
  307. {
  308. if($data['id']) {
  309. if (!isset($data['group']) || $data['group']==''){
  310. $this->error('请选择分组');
  311. }
  312. $date['group'] = $data['group'];
  313. $date['update_at'] = date('Y-m-d H:i:s');
  314. if (Db::name('store_member')->where('id',$data['id'])->update($date)){
  315. setMemberInfoHash($data['id']);
  316. $this->success('编辑成功');
  317. }
  318. $this->error('编辑失败');
  319. }
  320. }
  321. if($this->request->isPost() && $this->request->action() == 'grouping')
  322. {
  323. if (!isset($data['group']) || $data['group']==''){
  324. $this->error('请选择分组');
  325. }
  326. if (!isset($data['users']) || $data['users']==''){
  327. $this->error('请选择用户');
  328. }
  329. if (Db::name('store_member')->whereIn('id',$data['users'])->update(['group'=>$data['group']])){
  330. $this->success('分组成功',url('/#/user/member/index'));
  331. }
  332. $this->error('分组失败',url('/#/user/member/index'));
  333. }
  334. if($this->request->post() && $this->request->action() == 'wallet')
  335. {
  336. // 增加
  337. if($data['int_type'] == 1){
  338. if($data['change_money']) memberMoneyChange($data['change_money'],3,$data['id'],'后台增加',1,0);
  339. }else{
  340. if($data['change_money']) memberMoneyChange($data['change_money'],3,$data['id'],'后台扣减',0,0);
  341. }
  342. setMemberInfoHash($data['id']);
  343. }
  344. }
  345. public function shoucang(){
  346. $id=$this->request->get('id');
  347. $this->title = Db::name($this->table)->where('id',$id)->value('name').'--收藏明细';
  348. $query = $this->_query('store_order_info')->where('mid',$id)->whereIn('status','1,3');
  349. $query->dateBetween('create_at')->order('id desc')->page();
  350. $this->fetch();
  351. }
  352. /**
  353. * 数据列表处理
  354. * @auth true
  355. * @menu true
  356. * @param array $data
  357. * @throws \think\db\exception\DataNotFoundException
  358. * @throws \think\db\exception\ModelNotFoundException
  359. * @throws \think\exception\DbException
  360. */
  361. protected function _shoucang_page_filter(&$data)
  362. {
  363. foreach ($data as $k=>&$v){
  364. $v['pro_info'] =json_decode($v['pro_info'],true);
  365. $info = Db::name('store_member')->where('id',$v['mid'])->field('name,phone')->find();
  366. $v['scz'] = $info['name'].'('.$info['phone'].')';
  367. $pro_info = Db::name('store_collection')->where('id',$v['c_id'])->field('one_given_day,other_given_day')->find();
  368. $log = Db::name('store_collect_examples_log')
  369. ->where('order_info_id',$v['id'])
  370. ->count();
  371. if (!$log){
  372. if ($pro_info['one_given_day']!=0){
  373. $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['one_given_day']*24*60*60));
  374. }else{
  375. $v['exam_time'] = $v['create_at'];
  376. }
  377. }else{
  378. if ($pro_info['other_given_day']!=0){
  379. $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['other_given_day']*24*60*60));
  380. }else{
  381. $v['exam_time'] = $v['create_at'];
  382. }
  383. }
  384. }
  385. }
  386. public function export(){
  387. $get_data = $this->request->get();
  388. $time = explode(' - ',$get_data['create_at']);
  389. $phone = $get_data['phone'];
  390. $name = $get_data['name'];
  391. $where = [];
  392. $where[] = ['status',1];
  393. $where[] = ['is_deleted',0];
  394. $where_str = ' status = 1 AND is_deleted = 0';
  395. if($name) $where_str .=' AND name like '."'%".$name."%'";
  396. if($phone) $where_str .=' AND phone like '."'%".$phone."%'";
  397. if($get_data['create_at']) $where_str.=" AND create_at > '".$time[0]."'AND create_at <'".$time[1]."'";
  398. //var_dump("SELECT name,headimg,true_name,phone,create_at,synopsis FROM store_member WHERE".$where_str.' ORDER BY id DESC');die();
  399. $data = Db::query("SELECT name,headimg,true_name,phone,create_at,synopsis FROM store_member WHERE".$where_str.' ORDER BY id DESC');
  400. if(empty($data)) $this->error('暂无可以导出的数据');
  401. foreach ($data as $k=>&$v) {
  402. if(!$v) $v = '--';
  403. }
  404. $field=array(
  405. 'A' => array('name', '昵称'),
  406. 'B' => array('true_name', '真实姓名'),
  407. 'C' => array('phone', '联系电话'),
  408. 'D' => array('synopsis', '个人简介'),
  409. 'E' => array('create_at', '注册时间'),
  410. //'F' => array('headimg', '头像地址'),
  411. );
  412. $this->phpExcelList($field,$data,'会员列表');
  413. }
  414. public function phpExcelList($field=[],$list=[],$title='文件'){
  415. $PHPExcel=new \PHPExcel();
  416. $PHPSheet=$PHPExcel->getActiveSheet();
  417. $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
  418. foreach($list as $key=>$value)
  419. {
  420. foreach($field as $k=>$v){
  421. if($key == 0){
  422. $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
  423. }
  424. $i=$key+2;
  425. $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
  426. }
  427. }
  428. $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
  429. header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
  430. header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
  431. header('Cache-Control: max-age=0'); //禁止缓存
  432. $PHPWriter->save("php://output"); //输出到浏览器
  433. }
  434. /**
  435. * 添加
  436. * @auth true
  437. * @menu true
  438. * @param array $data
  439. * @throws \think\db\exception\DataNotFoundException
  440. * @throws \think\db\exception\ModelNotFoundException
  441. * @throws \think\exception\DbException
  442. */
  443. public function add(){
  444. $this->title = '添加';
  445. if($this->request->isPost()) {
  446. list($data) = [$this->request->post()];
  447. $check_where =[];
  448. $check_where[] = ['phone','=',$data['phone']];
  449. $user_info = Db::name('store_member')->where($check_where)->find();
  450. if($user_info) $this->error('用户已存在');
  451. if (!preg_match('/^[0-9a-z]{6,12}$/i',$data['password'])) $this->error('密码格式错误,请输入6-12位数字+字母');
  452. if (!preg_match('/^[0-9]{6}$/i',$data['second_password'])) $this->error('二级密码格式错误,请输入6位纯数字');
  453. $pid = 0;
  454. if($data['invite_code']){
  455. $isset = Db::name('store_member')->where('is_deleted',0)->where('invite_code',$data['invite_code'])->value('pid');
  456. if (!$isset) $this->error('邀请码不存在');
  457. $pid = $isset;
  458. }
  459. $user_add = [
  460. 'phone'=>$data['phone'],
  461. 'pid'=>$pid,
  462. 'password'=>md5($data['password']),
  463. 'second_password'=>md5($data['second_password']),
  464. 'wallet_address'=>'',
  465. 'accountName'=>$data['phone']
  466. ];
  467. $member_id = Db::name('store_member')->insertGetId($user_add);
  468. if ($member_id){
  469. $code = get32Str(8);
  470. $invite_img = setintivecode($code);
  471. $invite_address = getintiveaddress($code);
  472. Db::name('store_member')->where('id',$member_id)->update(['name'=>'收藏家'.$member_id,'invite_img'=>$invite_img,'invite_address'=>$invite_address,'invite_code'=>$code]);
  473. //邀请好友送积分
  474. if ($data['invite_code']>0){
  475. $invite_friends_integral = getConfigValue('invite_friends_integral');
  476. memberMoneyChange($invite_friends_integral,1,$data['invite_code'],'邀请好友',1,$member_id);
  477. }
  478. }
  479. $this->success('添加成功');
  480. }
  481. $this->_form($this->table, 'add');
  482. }
  483. /**
  484. * 批量充值
  485. * @auth true
  486. * @throws \think\Exception
  487. * @throws \think\exception\PDOException
  488. */
  489. public function import()
  490. {
  491. list($msec, $sec) = explode(' ', microtime());
  492. $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000); //毫秒值
  493. $get = $this->request->get();
  494. $import_path = $_SERVER['DOCUMENT_ROOT'].'/'.$get['path'];
  495. $url = $get['url'];
  496. if (getConfigValue('storage_type')=='oss'){
  497. $save_dir = "./upload/excle/"; // 服务资源目录
  498. $filename = date('Ymd').time().".xlsx"; // 自定义名称
  499. $res = $this->getFile($url,$save_dir,$filename,1);
  500. $import_path = $_SERVER['DOCUMENT_ROOT'].'/upload/excle/'.$res;
  501. }
  502. $num = 1;
  503. try {
  504. $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
  505. $objExcel = $objReader->load($import_path);
  506. $list = $objExcel->getActiveSheet()->toArray();
  507. $success = 0;
  508. $array = array();
  509. foreach ($list as $k=>$v){
  510. if($k>$num-1){
  511. if(array_filter($v)){
  512. $data=[];
  513. foreach ($v as $kk=>$vv){
  514. $data[IntToChr($kk)]=trim($vv);
  515. }
  516. $a['phone'] = $data['A'];
  517. $a['amount'] = $data['B'];
  518. array_push($array,$a);
  519. }
  520. }
  521. }
  522. $error = 0;
  523. $phone_error = array();
  524. foreach ($array as &$v){
  525. $member = Db::name('store_member')->where('phone',$v['phone'])->find();
  526. if (!$member || !$v['amount'] || $v['amount']<0 || $v['amount'] > 2000 || !is_numeric($v['amount'])){
  527. $error = $error+1;
  528. array_push($phone_error,$v['phone']);
  529. }else{
  530. $result = memberMoneyChange(abs($v['amount']),3,$member['id'],'系统奖励',1,0,6);
  531. if ($result){
  532. $success +=1;
  533. }else{
  534. $error = $error+1;
  535. }
  536. }
  537. }
  538. if ($error<1){
  539. $this->success('成功');
  540. }else{
  541. $this->error('失败',['error'=>$error,'success'=>$success,'phone_error'=>$phone_error],2);
  542. }
  543. } catch (\think\exception\ValidateException $e) {
  544. $this->error($e->getMessage());
  545. }
  546. }
  547. /**
  548. * 导出EXCL
  549. * @remark 根据WHERE条件导出EXCL
  550. * @param array $post 查询条件所需值
  551. * @return array
  552. */
  553. public function get_excl()
  554. {
  555. set_time_limit(0);
  556. $where =[];
  557. $where[] = ['is_deleted','=',0];
  558. if($name = $this->request->get('name')) $where[] = ['name','like','%'.$name.'%'];
  559. if($phone = $this->request->get('phone')) $where[] = ['phone','like','%'.$phone.'%'];
  560. $id_order = input('id_order') == 1 ? 'asc' : 'desc';
  561. $integral_order = input('integral_order') == 1 ? 'asc' : 'desc';
  562. $sel_time = input('create_at');
  563. if($sel_time) {
  564. $time_arr = explode(' - ',$sel_time);
  565. $where[]= ['create_at','> time',$time_arr[0]];
  566. $where[]= ['create_at','< time',$time_arr[1]];
  567. }
  568. $list = Db::name('store_member')
  569. ->where($where)
  570. ->order("id $id_order ,integral $integral_order")
  571. ->select();
  572. $export = [];
  573. if (is_array($list)) {
  574. foreach ($list as $index => $item) {
  575. $item['is_auth'] = $item['is_auth'] ? '是':'否';
  576. $export[] = [
  577. $item['id'],
  578. $item['name'],
  579. $item['phone'],
  580. $item['wallet_address'],
  581. $item['money'],
  582. $item['create_at'],
  583. $item['is_auth'],
  584. $item['true_name'],
  585. $item['id_card'],
  586. ];
  587. }
  588. }
  589. $title = ['用户ID','用户名','手机号','钱包地址','余额','时间','是否认证','真实姓名','身份证号'];
  590. PHPExcelService::setExcelHeader($title)
  591. ->setExcelTile('用户导出' . date('YmdHis', time()), '用户导出' . time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
  592. ->setExcelContent($export)
  593. ->ExcelSave();
  594. }
  595. /**
  596. * 下载文件到服务器
  597. * addtime 2020年8月28日 18:38:43
  598. */
  599. function getFile($url, $save_dir = '', $filename = '', $type = 0)
  600. {
  601. if (trim($url) == '') {
  602. return false;
  603. }
  604. if (trim($save_dir) == '') {
  605. $save_dir = './';
  606. }
  607. if (0 !== strrpos($save_dir, '/')) {
  608. $save_dir.= '/';
  609. }
  610. //创建保存目录
  611. if (!file_exists($save_dir) && !mkdir($save_dir, 0777, true)) {
  612. return false;
  613. }
  614. //获取远程文件所采用的方法
  615. if ($type) {
  616. $ch = curl_init();
  617. $timeout = 5;
  618. curl_setopt($ch, CURLOPT_URL, $url);
  619. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  620. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  621. $content = curl_exec($ch);
  622. curl_close($ch);
  623. } else {
  624. ob_start();
  625. readfile($url);
  626. $content = ob_get_contents();
  627. ob_end_clean();
  628. }
  629. $size = strlen($content);
  630. //文件大小
  631. $fp2 = @fopen($save_dir . $filename, 'a');
  632. fwrite($fp2, $content);
  633. fclose($fp2);
  634. unset($content, $url);
  635. return $filename;
  636. }
  637. }