UserExport.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\permissions\excel;
  12. use catchAdmin\permissions\model\Users;
  13. use catcher\library\excel\ExcelContract;
  14. use PhpOffice\PhpSpreadsheet\Style\Alignment;
  15. class UserExport implements ExcelContract
  16. {
  17. /**
  18. * 设置头部
  19. *
  20. * @time 2020年09月08日
  21. * @return string[]
  22. */
  23. public function headers(): array
  24. {
  25. // TODO: Implement headers() method.
  26. return [
  27. 'id', '用户名', '邮箱', '状态', '创建日期'
  28. ];
  29. }
  30. /**
  31. * 处理数据
  32. *
  33. * @time 2020年09月08日
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @return \think\Collection
  38. */
  39. public function sheets()
  40. {
  41. // TODO: Implement sheets() method.
  42. $users = Users::field(['id', 'username', 'email', 'status', 'created_at'])->select();
  43. foreach ($users as &$user) {
  44. $user->status = $user->status == Users::ENABLE ? '启用' : '停用';
  45. }
  46. return $users;
  47. }
  48. /**
  49. * 设置开始行
  50. *
  51. * @time 2020年09月08日
  52. * @return int
  53. */
  54. public function setRow()
  55. {
  56. return 2;
  57. }
  58. /**
  59. * 设置标题
  60. *
  61. * @time 2020年09月08日
  62. * @return array
  63. */
  64. public function setTitle()
  65. {
  66. return [
  67. 'A1:G1', '导出用户', Alignment::HORIZONTAL_CENTER
  68. ];
  69. }
  70. }