DwExport.php 3.8 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\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 DwExport 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', '基站简码', '基站型号', '安装照片', '安装地址', 'SIM卡序列号', '在线时间','安装时间'
  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. /*
  51. foreach ($list as &$val) {
  52. $val->student_no ="\t".$val->student_no."\t";
  53. $val->passive_rfid ="\t".$val->passive_rfid."\t";
  54. $val->active_rfid ="\t".$val->active_rfid."\t";
  55. $val->parent_phone ="\t".$val->parent_phone."\t";
  56. }
  57. */
  58. return $list;
  59. }
  60. public function keys(): array
  61. {
  62. // TODO: Implement keys() method.
  63. return [
  64. 'province_name', 'city_name', 'district_name', 'station_name', 'station_mac', 'station_code', 'station_model', 'install_photo', 'address', 'sim_serial_number', 'online_time','created_at'
  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' => 20,
  108. 'K' => 20,
  109. 'L' => 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. }