VehiclesExport.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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\yunying\excel;
  12. use catchAdmin\yunying\model\Vehicle as vehicleModel;
  13. use catcher\library\excel\ExcelContract;
  14. use PhpOffice\PhpSpreadsheet\Style\Alignment;
  15. class VehiclesExport implements ExcelContract
  16. {
  17. public $memory = '1024M';
  18. protected $vehicleModel;
  19. public function __construct(vehicleModel $vehicleModel)
  20. {
  21. $this->vehicleModel = $vehicleModel;
  22. }
  23. /**
  24. * 设置头部
  25. *
  26. * @time 2020年09月08日
  27. * @return string[]
  28. */
  29. public function headers(): array
  30. {
  31. // TODO: Implement headers() method.
  32. return [
  33. '部门','车牌号码','车辆状态','车主姓名','车辆品牌','车辆颜色', '上牌时间','上牌员工','电机号','车架号','购买日期','备注'
  34. ];
  35. }
  36. /**
  37. * 处理数据
  38. *
  39. * @time 2020年09月08日
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\DbException
  42. * @throws \think\db\exception\ModelNotFoundException
  43. * @return \think\Collection
  44. */
  45. public function sheets()
  46. {
  47. $list = $this->vehicleModel->getVehiclesExportList();
  48. foreach ($list as &$val) {
  49. $val->frame_number ="\t".$val->frame_number."\t";
  50. $val->motor_number ="\t".$val->motor_number."\t";
  51. }
  52. return $list;
  53. }
  54. public function keys(): array
  55. {
  56. // TODO: Implement keys() method.
  57. return [
  58. 'depart_name','license_plate','vehicle_state','owner','brand_name','color_name','license_time','open_user_name','motor_number','frame_number','buydate','remark'
  59. ];
  60. }
  61. /**
  62. * 设置开始行
  63. *
  64. * @time 2020年09月08日
  65. * @return int
  66. */
  67. public function setRow()
  68. {
  69. return 2;
  70. }
  71. /**
  72. * 设置标题
  73. *
  74. * @time 2020年09月08日
  75. * @return array
  76. */
  77. public function setTitle()
  78. {
  79. return [
  80. 'A1:I1', '导出车辆', Alignment::HORIZONTAL_CENTER
  81. ];
  82. }
  83. /**
  84. * 设置宽度
  85. *
  86. * @time 2020年09月08日
  87. * @return array
  88. */
  89. public function setWidth()
  90. {
  91. return [
  92. 'A' => 20,
  93. 'B' => 20,
  94. 'C' => 20,
  95. 'D' => 20,
  96. 'E' => 20,
  97. 'F' => 20,
  98. 'G' => 30,
  99. 'H' => 20,
  100. 'I' => 30,
  101. 'J' => 30,
  102. 'K' => 30,
  103. 'L' => 30,
  104. ];
  105. }
  106. public function getWorksheet($sheet)
  107. {
  108. // $sheet->getStyle('B')->getNumberFormat()->setFormatCode(\PhpOffice\PhpSpreadsheet\Style\NumberFormat::FORMAT_TEXT);
  109. // $sheet->getColumnDimension('B')->setAutoSize(true);
  110. // $sheet->getColumnDimension('C')->setAutoSize(true);
  111. // $sheet->getColumnDimension('D')->setAutoSize(true);
  112. // $sheet->getActiveSheet()->getColumnDimension('C')->setAutoSize(true);
  113. // $sheet->getActiveSheet()->getColumnDimension('D')->setAutoSize(true);
  114. return $sheet;
  115. }
  116. }