Member.php 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  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. if (isset($_GET['coll_id']) && $_GET['coll_id']!=''){
  45. $query = $this->_query($this->table)->alias('a')->field('a.*')
  46. ->where('a.is_deleted',0)
  47. ->leftJoin('store_order_info b','a.id=b.mid');
  48. if (isset($_GET['name']) && $_GET['name']){
  49. $query->where('a.name','like','%'.$_GET['name'].'%');
  50. }
  51. if (isset($_GET['phone']) && $_GET['phone']){
  52. $query->where('a.phone','like','%'.$_GET['phone'].'%');
  53. }
  54. if (isset($_GET['status']) && $_GET['status']!=''){
  55. $query->where('a.status',$_GET['status']);
  56. }
  57. if (isset($_GET['is_auth']) && $_GET['is_auth']!=''){
  58. $query->where('a.is_auth',$_GET['is_auth']);
  59. }
  60. if (isset($_GET['yeepay_wallet']) && $_GET['yeepay_wallet']!=''){
  61. $query->where('a.yeepay_wallet',$_GET['yeepay_wallet']);
  62. }
  63. if (isset($_GET['create_at']) && $_GET['create_at']){
  64. $time = explode(' - ',$_GET['create_at']);
  65. $start_date_time = $time[0].' 00:00:00';
  66. $end_date_time = $time[1].' 23:59:59';
  67. $query->whereBetweenTime('a.create_at',$start_date_time,$end_date_time);
  68. }
  69. if (isset($_GET['coll_id']) && $_GET['coll_id']!=''){
  70. $query->where('b.c_id','in',$_GET['coll_id']);
  71. }
  72. $query->where('b.is_destruction',1)
  73. ->where('b.status','neq',2)
  74. ->group('b.mid')
  75. ->page();
  76. }else{
  77. $query = $this->_query($this->table)->where('is_deleted',0);
  78. if (isset($_GET['name']) && $_GET['name']){
  79. $query->where('name','like','%'.$_GET['name'].'%');
  80. }
  81. if (isset($_GET['phone']) && $_GET['phone']){
  82. $query->where('phone','like','%'.$_GET['phone'].'%');
  83. }
  84. if (isset($_GET['status']) && $_GET['status']!=''){
  85. $query->where('status',$_GET['status']);
  86. }
  87. if (isset($_GET['is_auth']) && $_GET['is_auth']!=''){
  88. $query->where('is_auth',$_GET['is_auth']);
  89. }
  90. if (isset($_GET['yeepay_wallet']) && $_GET['yeepay_wallet']!=''){
  91. $query->where('yeepay_wallet',$_GET['yeepay_wallet']);
  92. }
  93. if (isset($_GET['create_at']) && $_GET['create_at']){
  94. $time = explode(' - ',$_GET['create_at']);
  95. $start_date_time = $time[0].' 00:00:00';
  96. $end_date_time = $time[1].' 23:59:59';
  97. $query->whereBetweenTime('create_at',$start_date_time,$end_date_time);
  98. }
  99. $query->page();
  100. }
  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. protected function _index_page_filter(&$data)
  112. {
  113. foreach ($data as $k=>&$v){
  114. $v['group_name'] = Db::name('store_member_group')->where('id',$v['group'])->value('name');
  115. $v['invite_count'] = Db::name($this->table)->where('pid',$v['id'])->count();
  116. }
  117. $this->group_list = Db::name('store_member_group')->select();
  118. $this->group_list = array_merge([['id'=>'','name'=>'全部会员']],$this->group_list);
  119. //藏品列表
  120. $this->coll_list = Db::name('store_collection')->where('is_deleted',0)->field('id,name')->select();
  121. $this->coll_list = array_merge([['id'=>'','name'=>'全部']],$this->coll_list);
  122. $goods = [];
  123. $tmpGoods = Db::table('store_collection')->where('is_deleted', 0)->field('id,name')->select();
  124. foreach($tmpGoods as $key=>$val){
  125. $goods[$key]['name'] = $val['name'];
  126. $goods[$key]['value'] = (string)$val['id'];
  127. }
  128. $this->assign('goods', $goods);
  129. }
  130. //删除货主
  131. public function remove()
  132. {
  133. $this->_save($this->table, ['is_deleted' => '1']);
  134. }
  135. //禁用货主
  136. public function forbid()
  137. {
  138. $this->_save($this->table, ['status' => '0']);
  139. }
  140. //启用货主
  141. public function resume()
  142. {
  143. $this->_save($this->table, ['status' => '1']);
  144. }
  145. /**
  146. * 编辑抢购卡
  147. * @auth true
  148. * @menu true
  149. * @throws \think\Exception
  150. * @throws \think\db\exception\DataNotFoundException
  151. * @throws \think\db\exception\ModelNotFoundException
  152. * @throws \think\exception\DbException
  153. * @throws \think\exception\PDOException
  154. */
  155. public function snap_card(){
  156. $this->title = '抢购卡';
  157. $this->_form($this->table, 'snap_card');
  158. }
  159. /**
  160. * 编辑积分
  161. * @auth true
  162. * @menu true
  163. * @throws \think\Exception
  164. * @throws \think\db\exception\DataNotFoundException
  165. * @throws \think\db\exception\ModelNotFoundException
  166. * @throws \think\exception\DbException
  167. * @throws \think\exception\PDOException
  168. */
  169. public function integral(){
  170. $this->title = '积分变更';
  171. $this->_form($this->table, 'integral');
  172. }
  173. /**
  174. * 编辑转赠次数
  175. * @auth true
  176. * @menu true
  177. * @throws \think\Exception
  178. * @throws \think\db\exception\DataNotFoundException
  179. * @throws \think\db\exception\ModelNotFoundException
  180. * @throws \think\exception\DbException
  181. * @throws \think\exception\PDOException
  182. */
  183. public function examples_number(){
  184. $this->title = '转赠次数';
  185. $this->_form($this->table, 'examples_number');
  186. }
  187. /**
  188. * 编辑vip
  189. * @auth true
  190. * @menu true
  191. * @throws \think\Exception
  192. * @throws \think\db\exception\DataNotFoundException
  193. * @throws \think\db\exception\ModelNotFoundException
  194. * @throws \think\exception\DbException
  195. * @throws \think\exception\PDOException
  196. */
  197. public function vip(){
  198. $this->title = 'vip';
  199. $this->_form($this->table, 'vip');
  200. }
  201. /**
  202. * 编辑详情
  203. * @auth true
  204. * @menu true
  205. * @throws \think\Exception
  206. * @throws \think\db\exception\DataNotFoundException
  207. * @throws \think\db\exception\ModelNotFoundException
  208. * @throws \think\exception\DbException
  209. * @throws \think\exception\PDOException
  210. */
  211. public function info(){
  212. $this->title = '详情';
  213. $this->_form($this->table, 'info');
  214. }
  215. /**
  216. * 编辑分组
  217. * @auth true
  218. * @menu true
  219. * @throws \think\Exception
  220. * @throws \think\db\exception\DataNotFoundException
  221. * @throws \think\db\exception\ModelNotFoundException
  222. * @throws \think\exception\DbException
  223. * @throws \think\exception\PDOException
  224. */
  225. public function save_group(){
  226. $this->title = '编辑分组';
  227. $this->group_list = Db::name('store_member_group')->select();
  228. $this->_form($this->table, 'save_group');
  229. }
  230. /**
  231. * 一键抢购卡
  232. * @auth true
  233. * @menu true
  234. * @throws \think\Exception
  235. * @throws \think\db\exception\DataNotFoundException
  236. * @throws \think\db\exception\ModelNotFoundException
  237. * @throws \think\exception\DbException
  238. * @throws \think\exception\PDOException
  239. */
  240. public function snap_cards(){
  241. $this->title = '抢购卡';
  242. $this->group_list = Db::name('store_member_group')->select();
  243. $this->_form($this->table, 'snap_cards');
  244. }
  245. /**
  246. * 一键分组
  247. * @auth true
  248. * @menu true
  249. * @throws \think\Exception
  250. * @throws \think\db\exception\DataNotFoundException
  251. * @throws \think\db\exception\ModelNotFoundException
  252. * @throws \think\exception\DbException
  253. * @throws \think\exception\PDOException
  254. */
  255. public function grouping(){
  256. $this->title = '分组';
  257. $list = Db::name('store_member')
  258. ->where('is_deleted',0)
  259. ->where('group',0)
  260. ->field('id,name,phone')
  261. ->select();
  262. $group_list = Db::name('store_member_group')->select();
  263. $this->assign('list',$list);
  264. $this->assign('group_list',$group_list);
  265. $this->_form($this->table, 'grouping');
  266. }
  267. /**
  268. * 回收藏品
  269. * @auth true
  270. * @menu true
  271. * @throws \think\Exception
  272. * @throws \think\db\exception\DataNotFoundException
  273. * @throws \think\db\exception\ModelNotFoundException
  274. * @throws \think\exception\DbException
  275. * @throws \think\exception\PDOException
  276. */
  277. public function recycling(){
  278. $this->title = '回收藏品';
  279. $this->_form($this->table, 'recycling');
  280. }
  281. protected function _form_filter(&$data){
  282. if($this->request->isPost() && $this->request->action() == 'snap_card')
  283. {
  284. if($data['id']) {
  285. if($data['int_type'] == 4) {
  286. $result = memberMoneyChange($data['snap_card'],2,$data['id'],'后台人工调整',1);
  287. }else{
  288. $result = memberMoneyChange($data['snap_card'],2,$data['id'],'后台人工调整',0);
  289. }
  290. if ($result){
  291. setMembercard($data['id']);
  292. setMemberInfoHash($data['id']);
  293. $this->success('调整成功');
  294. }
  295. }
  296. }
  297. if($this->request->isPost() && $this->request->action() == 'snap_cards')
  298. {
  299. if (!isset($data['group']) || $data['group']==''){
  300. $this->error('请选择分组');
  301. }
  302. $user = Db::name('store_member')->where('is_deleted',0)->where('group',$data['group'])->select();
  303. foreach ($user as &$v){
  304. $result = memberMoneyChange($data['snap_card'],2,$v['id'],'后台人工调整',1);
  305. if ($result){
  306. setMembercard($v['id']);
  307. setMemberInfoHash($v['id']);
  308. }
  309. }
  310. $this->success('调整成功');
  311. }
  312. if($this->request->isPost() && $this->request->action() == 'integral')
  313. {
  314. if($data['id']) {
  315. if($data['int_type'] == 4) {
  316. $result = memberMoneyChange($data['integral'],1,$data['id'],'后台人工调整',1);
  317. }else{
  318. $result = memberMoneyChange($data['integral'],1,$data['id'],'后台人工调整',0);
  319. }
  320. if ($result){
  321. setMemberInfoHash($data['id']);
  322. $this->success('调整成功');
  323. }
  324. }
  325. }
  326. if($this->request->isPost() && $this->request->action() == 'examples_number')
  327. {
  328. if($data['id']) {
  329. if (Db::name('store_member')->where('id',$data['id'])->update(['examples_number'=>$data['examples_number'],'update_at'=>date('Y-m-d H:i:s')])){
  330. setMemberInfoHash($data['id']);
  331. $this->success('调整成功');
  332. }
  333. }
  334. }
  335. if($this->request->isPost() && $this->request->action() == 'vip')
  336. {
  337. if($data['id']) {
  338. if (Db::name('store_member')->where('id',$data['id'])->update(['vip'=>$data['vip'],'update_at'=>date('Y-m-d H:i:s')])){
  339. setMemberInfoHash($data['id']);
  340. $this->success('调整成功');
  341. }
  342. }
  343. }
  344. if($this->request->isPost() && $this->request->action() == 'info')
  345. {
  346. if($data['id']) {
  347. if ($data['password']!=''){
  348. $date['password'] = md5($data['password']);
  349. }
  350. if ($data['second_password']!=''){
  351. $date['second_password'] = md5($data['second_password']);
  352. }
  353. $date['update_at'] = date('Y-m-d H:i:s');
  354. if (Db::name('store_member')->where('id',$data['id'])->update($date)){
  355. setMemberInfoHash($data['id']);
  356. $this->success('编辑成功');
  357. }
  358. $this->error('编辑失败');
  359. }
  360. }
  361. if($this->request->isPost() && $this->request->action() == 'save_group')
  362. {
  363. if($data['id']) {
  364. if (!isset($data['group']) || $data['group']==''){
  365. $this->error('请选择分组');
  366. }
  367. $date['group'] = $data['group'];
  368. $date['update_at'] = date('Y-m-d H:i:s');
  369. if (Db::name('store_member')->where('id',$data['id'])->update($date)){
  370. setMemberInfoHash($data['id']);
  371. $this->success('编辑成功');
  372. }
  373. $this->error('编辑失败');
  374. }
  375. }
  376. if($this->request->isPost() && $this->request->action() == 'grouping')
  377. {
  378. if (!isset($data['group']) || $data['group']==''){
  379. $this->error('请选择分组');
  380. }
  381. if (!isset($data['users']) || $data['users']==''){
  382. $this->error('请选择用户');
  383. }
  384. if (Db::name('store_member')->whereIn('id',$data['users'])->update(['group'=>$data['group']])){
  385. $this->success('分组成功',url('/#/user/member/index'));
  386. }
  387. $this->error('分组失败',url('/#/user/member/index'));
  388. }
  389. if($this->request->isPost() && $this->request->action() == 'recycling')
  390. {
  391. $user = Db::name('store_member')->where('phone',$data['phone'])->find();
  392. if (!$user) $this->error('手机号不存在');
  393. //获取被回收的藏品
  394. $ids = Db::name('store_order_info')
  395. ->where('mid',$data['id'])
  396. ->where('status','neq',2)
  397. ->where('is_destruction',1)
  398. ->column('id');
  399. if (!$ids) $this->error('无可回收藏品');
  400. $idss = implode(',',$ids);
  401. $ins_data = [
  402. 'mid'=>$data['id'],
  403. 'to_mid'=>$user['id'],
  404. 'order_info_ids'=>$idss
  405. ];
  406. Db::startTrans();
  407. try {
  408. Db::name('store_order_info')->whereIn('id',$ids)->update(['mid'=>$user['id']]);
  409. Db::name('store_order_info_recycling')->insert($ins_data);
  410. Db::commit();
  411. $this->success('回收成功');
  412. }catch (\Exception $e){
  413. Db::rollback();
  414. $this->error('回收失败');
  415. }
  416. }
  417. }
  418. /**
  419. * 回收记录
  420. * @auth true
  421. * @menu true
  422. * @throws \think\Exception
  423. * @throws \think\db\exception\DataNotFoundException
  424. * @throws \think\db\exception\ModelNotFoundException
  425. * @throws \think\exception\DbException
  426. * @throws \think\exception\PDOException
  427. */
  428. public function recycling_log(){
  429. $id=$this->request->get('id');
  430. $info = Db::name('store_order_info_recycling')->where('mid',$id)->find();
  431. if (isset($info) && $info['order_info_ids']){
  432. $phone = Db::name('store_member')->where('id',$info['to_mid'])->value('phone');
  433. $list = Db::name('store_order_info')->whereIn('id',$info['order_info_ids'])->field('name')->select();
  434. foreach ($list as &$v){
  435. $v['phone'] = $phone;
  436. $v['create_at'] = $info['create_at'];
  437. }
  438. }else{
  439. $list = [];
  440. }
  441. $this->assign('list',$list);
  442. $this->fetch();
  443. }
  444. public function shoucang(){
  445. $id=$this->request->get('id');
  446. $this->title = Db::name($this->table)->where('id',$id)->value('name').'--收藏明细';
  447. $query = $this->_query('store_order_info')->where('mid',$id)->where('status','neq',2);
  448. $query->dateBetween('create_at')->order('id desc')->page();
  449. $this->fetch();
  450. }
  451. /**
  452. * 数据列表处理
  453. * @auth true
  454. * @menu true
  455. * @param array $data
  456. * @throws \think\db\exception\DataNotFoundException
  457. * @throws \think\db\exception\ModelNotFoundException
  458. * @throws \think\exception\DbException
  459. */
  460. protected function _shoucang_page_filter(&$data)
  461. {
  462. foreach ($data as $k=>&$v){
  463. $v['pro_info'] =json_decode($v['pro_info'],true);
  464. $info = Db::name('store_member')->where('id',$v['mid'])->field('name,phone')->find();
  465. $v['scz'] = $info['name'].'('.$info['phone'].')';
  466. $pro_info = Db::name('store_collection')->where('id',$v['c_id'])->field('one_given_day,other_given_day')->find();
  467. $log = Db::name('store_collect_examples_log')
  468. ->where('order_info_id',$v['id'])
  469. ->count();
  470. if (!$log){
  471. if ($pro_info['one_given_day']!=0){
  472. $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['one_given_day']*24*60*60));
  473. }else{
  474. $v['exam_time'] = $v['create_at'];
  475. }
  476. }else{
  477. if ($pro_info['other_given_day']!=0){
  478. $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['other_given_day']*24*60*60));
  479. }else{
  480. $v['exam_time'] = $v['create_at'];
  481. }
  482. }
  483. }
  484. }
  485. public function export(){
  486. $get_data = $this->request->get();
  487. $time = explode(' - ',$get_data['create_at']);
  488. $phone = $get_data['phone'];
  489. $name = $get_data['name'];
  490. $where = [];
  491. $where[] = ['status',1];
  492. $where[] = ['is_deleted',0];
  493. $where_str = ' status = 1 AND is_deleted = 0';
  494. if($name) $where_str .=' AND name like '."'%".$name."%'";
  495. if($phone) $where_str .=' AND phone like '."'%".$phone."%'";
  496. if($get_data['create_at']) $where_str.=" AND create_at > '".$time[0]."'AND create_at <'".$time[1]."'";
  497. //var_dump("SELECT name,headimg,true_name,phone,create_at,synopsis FROM store_member WHERE".$where_str.' ORDER BY id DESC');die();
  498. $data = Db::query("SELECT name,headimg,true_name,phone,create_at,synopsis FROM store_member WHERE".$where_str.' ORDER BY id DESC');
  499. if(empty($data)) $this->error('暂无可以导出的数据');
  500. foreach ($data as $k=>&$v) {
  501. if(!$v) $v = '--';
  502. }
  503. $field=array(
  504. 'A' => array('name', '昵称'),
  505. 'B' => array('true_name', '真实姓名'),
  506. 'C' => array('phone', '联系电话'),
  507. 'D' => array('synopsis', '个人简介'),
  508. 'E' => array('create_at', '注册时间'),
  509. //'F' => array('headimg', '头像地址'),
  510. );
  511. $this->phpExcelList($field,$data,'会员列表');
  512. }
  513. public function phpExcelList($field=[],$list=[],$title='文件'){
  514. $PHPExcel=new \PHPExcel();
  515. $PHPSheet=$PHPExcel->getActiveSheet();
  516. $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
  517. foreach($list as $key=>$value)
  518. {
  519. foreach($field as $k=>$v){
  520. if($key == 0){
  521. $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
  522. }
  523. $i=$key+2;
  524. $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
  525. }
  526. }
  527. $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
  528. header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
  529. header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
  530. header('Cache-Control: max-age=0'); //禁止缓存
  531. $PHPWriter->save("php://output"); //输出到浏览器
  532. }
  533. /**
  534. * 导出EXCL
  535. * @remark 根据WHERE条件导出EXCL
  536. * @param array $post 查询条件所需值
  537. * @return array
  538. */
  539. public function get_excl()
  540. {
  541. set_time_limit(0);
  542. $query = Db::name($this->table)->alias('a')->field('a.id,a.name,a.phone,b.name,count(b.id) as count')
  543. ->where('a.is_deleted',0)
  544. ->join('store_order_info b','a.id=b.mid');
  545. if (isset($_GET['name']) && $_GET['name']){
  546. $query->where('a.name','like','%'.$_GET['name'].'%');
  547. }
  548. if (isset($_GET['phone']) && $_GET['phone']){
  549. $query->where('a.phone','like','%'.$_GET['phone'].'%');
  550. }
  551. if (isset($_GET['status']) && $_GET['status']!=''){
  552. $query->where('a.status',$_GET['status']);
  553. }
  554. if (isset($_GET['create_at']) && $_GET['create_at']){
  555. $time = explode(' - ',$_GET['create_at']);
  556. $start_date_time = $time[0].' 00:00:00';
  557. $end_date_time = $time[1].' 23:59:59';
  558. $query->whereBetweenTime('a.create_at',$start_date_time,$end_date_time);
  559. }
  560. if (isset($_GET['coll_id']) && $_GET['coll_id']!=''){
  561. $query->where('b.c_id','in',$_GET['coll_id']);
  562. }
  563. $names = Db::name('store_collection')->whereIn('id',$_GET['coll_id'])->column('name');
  564. $list = $query->where('b.is_destruction',1)
  565. ->where('b.status','neq',2)
  566. ->group('b.mid,b.c_id')
  567. ->select();
  568. foreach ($list as $key => $value) {
  569. $newArr[$value['phone']][] = $value;
  570. }
  571. $head = ['手机号'];
  572. if (isset($_GET['coll_id']) && $_GET['coll_id']!=''){
  573. $head = array_merge($head,$names);
  574. }
  575. $export = [];
  576. if (is_array($newArr)) {
  577. foreach ($newArr as $index => $item) {
  578. if (isset($_GET['coll_id']) && $_GET['coll_id']!=''){
  579. $export1 = [
  580. $index
  581. ];
  582. foreach ($names as $key=>&$c){
  583. foreach ($item as $a=>$b){
  584. if ($c==$b['name']){
  585. $export1[$key+1] = $b['count'];
  586. }else{
  587. $export1[$key+1] = isset($export1[$key+1]) && $export1[$key+1] ? $export1[$key+1] : 0 ;
  588. }
  589. }
  590. }
  591. $export[] = $export1;
  592. }else{
  593. $export[] = [
  594. $index
  595. ];
  596. }
  597. }
  598. }
  599. PHPExcelService::setExcelHeader($head)
  600. ->setExcelTile('手机号导出' . date('YmdHis', time()), '手机号信息' . time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
  601. ->setExcelContent($export)
  602. ->ExcelSave();
  603. }
  604. }