StationExport.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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\Station as stationModel;
  14. use catcher\library\excel\ExcelContract;
  15. use PhpOffice\PhpSpreadsheet\Style\Alignment;
  16. class StationExport implements ExcelContract
  17. {
  18. public $memory = '1024M';
  19. protected $badgeModel;
  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->getStationExportList();
  49. foreach ($list as &$val) {
  50. $val->mac ="\t".$val->mac."\t";
  51. $val->shortmac ="\t".$val->shortmac."\t";
  52. if($val->open_status){
  53. $val->use_state = '已开局';
  54. }else{
  55. $val->use_state = '未开局';
  56. }
  57. }
  58. return $list;
  59. }
  60. public function keys(): array
  61. {
  62. // TODO: Implement keys() method.
  63. return [
  64. 'depart_name','name','mac','shortcode','use_state','online_time','open_time','created_at','open_user_name','address','remark'
  65. ];
  66. }
  67. /**
  68. * 设置开始行
  69. *
  70. * @time 2020年09月08日
  71. * @return int
  72. */
  73. public function setRow()
  74. {
  75. return 2;
  76. }
  77. /**
  78. * 设置标题
  79. *
  80. * @time 2020年09月08日
  81. * @return array
  82. */
  83. public function setTitle()
  84. {
  85. return [
  86. 'A1:I1', '导出基站设备', Alignment::HORIZONTAL_CENTER
  87. ];
  88. }
  89. /**
  90. * 设置宽度
  91. *
  92. * @time 2020年09月08日
  93. * @return array
  94. */
  95. public function setWidth()
  96. {
  97. return [
  98. 'A' => 20,
  99. 'B' => 20,
  100. 'C' => 20,
  101. 'D' => 20,
  102. 'E' => 20,
  103. 'F' => 20,
  104. 'G' => 20,
  105. 'H' => 20,
  106. 'I' => 20,
  107. 'J' => 30,
  108. 'K' => 20,
  109. ];
  110. }
  111. public function getWorksheet($sheet)
  112. {
  113. // $sheet->getStyle('B')->getNumberFormat()->setFormatCode(\PhpOffice\PhpSpreadsheet\Style\NumberFormat::FORMAT_TEXT);
  114. // $sheet->getColumnDimension('B')->setAutoSize(true);
  115. // $sheet->getColumnDimension('C')->setAutoSize(true);
  116. // $sheet->getColumnDimension('D')->setAutoSize(true);
  117. // $sheet->getActiveSheet()->getColumnDimension('C')->setAutoSize(true);
  118. // $sheet->getActiveSheet()->getColumnDimension('D')->setAutoSize(true);
  119. return $sheet;
  120. }
  121. }