SkExport.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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\stations\excel;
  12. use catcher\base\CatchRequest as Request;
  13. use catchAdmin\stations\model\Station as stationModel;
  14. use catcher\library\excel\ExcelContract;
  15. use PhpOffice\PhpSpreadsheet\Style\Alignment;
  16. class SkExport implements ExcelContract
  17. {
  18. public $memory = '1024M';
  19. protected $stationModel;
  20. public function __construct(stationModel $stationModel)
  21. {
  22. $this->stationModel = $stationModel;
  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. '学校', '建筑', '楼层', '房间', '基站名称', '基站Mac', '基站简码', '安装照片', '在线时间', '安装时间'
  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->stationModel->getExportList();
  49. // var_dump($list);
  50. foreach ($list as &$val) {
  51. // $val->student_no ="\t".$val->student_no."\t";
  52. // $val->passive_rfid ="\t".$val->passive_rfid."\t";
  53. // $val->active_rfid ="\t".$val->active_rfid."\t";
  54. // $val->parent_phone ="\t".$val->parent_phone."\t";
  55. }
  56. return $list;
  57. }
  58. public function keys(): array
  59. {
  60. // TODO: Implement keys() method.
  61. return [
  62. 'school_name', 'building_name', 'floor_name', 'room_no', 'station_name', 'station_mac', 'station_code','install_photo','online_time','created_at'
  63. ];
  64. }
  65. /**
  66. * 设置开始行
  67. *
  68. * @time 2020年09月08日
  69. * @return int
  70. */
  71. public function setRow()
  72. {
  73. return 2;
  74. }
  75. /**
  76. * 设置标题
  77. *
  78. * @time 2020年09月08日
  79. * @return array
  80. */
  81. public function setTitle()
  82. {
  83. return [
  84. 'A1:I1', '导出室内插座', Alignment::HORIZONTAL_CENTER
  85. ];
  86. }
  87. /**
  88. * 设置宽度
  89. *
  90. * @time 2020年09月08日
  91. * @return array
  92. */
  93. public function setWidth()
  94. {
  95. return [
  96. 'A' => 20,
  97. 'B' => 20,
  98. 'C' => 20,
  99. 'D' => 20,
  100. 'E' => 20,
  101. 'F' => 20,
  102. 'G' => 20,
  103. 'H' => 20,
  104. 'I' => 20,
  105. 'J' => 20,
  106. ];
  107. }
  108. public function getWorksheet($sheet)
  109. {
  110. // $sheet->getStyle('B')->getNumberFormat()->setFormatCode(\PhpOffice\PhpSpreadsheet\Style\NumberFormat::FORMAT_TEXT);
  111. // $sheet->getColumnDimension('B')->setAutoSize(true);
  112. // $sheet->getColumnDimension('C')->setAutoSize(true);
  113. // $sheet->getColumnDimension('D')->setAutoSize(true);
  114. // $sheet->getActiveSheet()->getColumnDimension('C')->setAutoSize(true);
  115. // $sheet->getActiveSheet()->getColumnDimension('D')->setAutoSize(true);
  116. return $sheet;
  117. }
  118. }