CardsExport.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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\device\excel;
  12. use catcher\base\CatchRequest as Request;
  13. use catchAdmin\device\model\Device as deviceModel;
  14. use catcher\library\excel\ExcelContract;
  15. use PhpOffice\PhpSpreadsheet\Style\Alignment;
  16. class CardsExport implements ExcelContract
  17. {
  18. public $memory = '1024M';
  19. protected $badgeModel;
  20. public function __construct(deviceModel $deviceModel)
  21. {
  22. $this->deviceModel = $deviceModel;
  23. }
  24. /**
  25. * 设置头部
  26. *
  27. * @time 2020年09月08日
  28. * @return string[]
  29. */
  30. public function headers(): array
  31. {
  32. // TODO: Implement headers() method.
  33. return [
  34. '部门','imei','设备RFID','设备类型','使用状态','在线时间', '录入时间'
  35. ];
  36. }
  37. /**
  38. * 处理数据
  39. *
  40. * @time 2020年09月08日
  41. * @throws \think\db\exception\DataNotFoundException
  42. * @throws \think\db\exception\DbException
  43. * @throws \think\db\exception\ModelNotFoundException
  44. * @return \think\Collection
  45. */
  46. public function sheets()
  47. {
  48. $list = $this->deviceModel->getCardExportList();
  49. foreach ($list as &$val) {
  50. $val->user_no ="\t".$val->user_no."\t";
  51. $val->imei ="\t".$val->imei."\t";
  52. $val->rfid ="\t".$val->rfid."\t";
  53. }
  54. return $list;
  55. }
  56. public function keys(): array
  57. {
  58. // TODO: Implement keys() method.
  59. return [
  60. 'depart_name','imei','rfid','device_type_text','use_state','online_time','created_at'
  61. ];
  62. }
  63. /**
  64. * 设置开始行
  65. *
  66. * @time 2020年09月08日
  67. * @return int
  68. */
  69. public function setRow()
  70. {
  71. return 2;
  72. }
  73. /**
  74. * 设置标题
  75. *
  76. * @time 2020年09月08日
  77. * @return array
  78. */
  79. public function setTitle()
  80. {
  81. return [
  82. 'A1:I1', '导出徽章用户', Alignment::HORIZONTAL_CENTER
  83. ];
  84. }
  85. /**
  86. * 设置宽度
  87. *
  88. * @time 2020年09月08日
  89. * @return array
  90. */
  91. public function setWidth()
  92. {
  93. return [
  94. 'A' => 20,
  95. 'B' => 20,
  96. 'C' => 20,
  97. 'D' => 20,
  98. 'E' => 20
  99. ];
  100. }
  101. public function getWorksheet($sheet)
  102. {
  103. // $sheet->getStyle('B')->getNumberFormat()->setFormatCode(\PhpOffice\PhpSpreadsheet\Style\NumberFormat::FORMAT_TEXT);
  104. // $sheet->getColumnDimension('B')->setAutoSize(true);
  105. // $sheet->getColumnDimension('C')->setAutoSize(true);
  106. // $sheet->getColumnDimension('D')->setAutoSize(true);
  107. // $sheet->getActiveSheet()->getColumnDimension('C')->setAutoSize(true);
  108. // $sheet->getActiveSheet()->getColumnDimension('D')->setAutoSize(true);
  109. return $sheet;
  110. }
  111. }