DeviceExport.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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 DeviceExport 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. '所属部门','告警状态','GPS编号','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->getDevicesExportList();
  49. foreach ($list as &$val) {
  50. $val->bind_number ="\t".$val->bind_number."\t";
  51. $val->imei ="\t".$val->imei."\t";
  52. $val->rfid ="\t".$val->rfid."\t";
  53. $val->name ="\t".$val->name."\t";
  54. if($val->device_state === 1){
  55. $val->use_state = '已注册';
  56. }else{
  57. $val->use_state = '未注册';
  58. }
  59. }
  60. return $list;
  61. }
  62. public function keys(): array
  63. {
  64. // TODO: Implement keys() method.
  65. return [
  66. 'depart_name','alarm_state_text','imei','rfid','name','use_state','bind_number','model_text','online_time','created_at'
  67. ];
  68. }
  69. /**
  70. * 设置开始行
  71. *
  72. * @time 2020年09月08日
  73. * @return int
  74. */
  75. public function setRow()
  76. {
  77. return 2;
  78. }
  79. /**
  80. * 设置标题
  81. *
  82. * @time 2020年09月08日
  83. * @return array
  84. */
  85. public function setTitle()
  86. {
  87. return [
  88. 'A1:I1', '导出设备', Alignment::HORIZONTAL_CENTER
  89. ];
  90. }
  91. /**
  92. * 设置宽度
  93. *
  94. * @time 2020年09月08日
  95. * @return array
  96. */
  97. public function setWidth()
  98. {
  99. return [
  100. 'A' => 20,
  101. 'B' => 20,
  102. 'C' => 20,
  103. 'D' => 20,
  104. 'E' => 20,
  105. 'F' => 20,
  106. 'G' => 20,
  107. 'H' => 20,
  108. 'I' => 20,
  109. 'J' => 20
  110. ];
  111. }
  112. public function getWorksheet($sheet)
  113. {
  114. // $sheet->getStyle('B')->getNumberFormat()->setFormatCode(\PhpOffice\PhpSpreadsheet\Style\NumberFormat::FORMAT_TEXT);
  115. // $sheet->getColumnDimension('B')->setAutoSize(true);
  116. // $sheet->getColumnDimension('C')->setAutoSize(true);
  117. // $sheet->getColumnDimension('D')->setAutoSize(true);
  118. // $sheet->getActiveSheet()->getColumnDimension('C')->setAutoSize(true);
  119. // $sheet->getActiveSheet()->getColumnDimension('D')->setAutoSize(true);
  120. return $sheet;
  121. }
  122. }