Commit 1c23d31d authored by 王源's avatar 王源 🎧

优化导入和导出工具类

parent 8c5e67ab
...@@ -52,7 +52,7 @@ class UploadManager ...@@ -52,7 +52,7 @@ class UploadManager
{ {
$excelOptions = [ $excelOptions = [
'path' => 'excel', 'path' => 'excel',
'mime' => ['xlsx', 'xls'] 'mime' => ['xlsx', 'xls', 'csv']
]; ];
$options = array_merge($excelOptions, $options); $options = array_merge($excelOptions, $options);
return self::uploadFile($excel, $options); return self::uploadFile($excel, $options);
...@@ -69,7 +69,7 @@ class UploadManager ...@@ -69,7 +69,7 @@ class UploadManager
{ {
$excelOptions = [ $excelOptions = [
'path' => 'excel', 'path' => 'excel',
'mime' => ['xlsx', 'xls'] 'mime' => ['xlsx', 'xls', 'csv']
]; ];
$options = array_merge($excelOptions, $options); $options = array_merge($excelOptions, $options);
return self::uploadFile($excel, $options, true); return self::uploadFile($excel, $options, true);
...@@ -150,9 +150,9 @@ class UploadManager ...@@ -150,9 +150,9 @@ class UploadManager
$file->moveTo($savePath); $file->moveTo($savePath);
if ($file->isMoved()) { if ($file->isMoved()) {
if ($realPath) { if ($realPath) {
return $savePath.'?'.$name; return $savePath . '?' . $name;
} else { } else {
return str_replace($documentRoot, '', $savePath.'?'.$name); return str_replace($documentRoot, '', $savePath . '?' . $name);
} }
} else { } else {
throw new HttpResponseException('文件保存失败'); throw new HttpResponseException('文件保存失败');
......
...@@ -216,7 +216,7 @@ class Exporter ...@@ -216,7 +216,7 @@ class Exporter
* @return Exporter * @return Exporter
* @throws PhpSpreadsheetException * @throws PhpSpreadsheetException
*/ */
public function append(array $data, $keys = []) public function append(array $data, $keys = [], $noStyle = false)
{ {
// 一维数组转二维 // 一维数组转二维
foreach ($data as $v) { foreach ($data as $v) {
...@@ -233,8 +233,10 @@ class Exporter ...@@ -233,8 +233,10 @@ class Exporter
} }
$this->sheet->fromArray($data, null, $this->beginColumnChar . $this->beginRowIndex); $this->sheet->fromArray($data, null, $this->beginColumnChar . $this->beginRowIndex);
//美化样式 if (!$noStyle) {
// 美化样式
$this->applyStyle($this->beginColumnChar . $this->beginRowIndex . ":" . $this->sheet->getHighestColumn() . ($this->beginRowIndex + count($data) - 1)); $this->applyStyle($this->beginColumnChar . $this->beginRowIndex . ":" . $this->sheet->getHighestColumn() . ($this->beginRowIndex + count($data) - 1));
}
$this->beginRowIndex += count($data); $this->beginRowIndex += count($data);
return $this; return $this;
} }
...@@ -386,7 +388,7 @@ class Exporter ...@@ -386,7 +388,7 @@ class Exporter
$date = date('YmdHis'); $date = date('YmdHis');
$fileReadPath = $filePath . $filename . '-' . $date . "." . strtolower($this->fileType); $fileReadPath = $filePath . $filename . '-' . $date . "." . strtolower($this->fileType);
$objWriter->save($fileReadPath); $objWriter->save($fileReadPath);
return config('server.settings.document_root') . "/export/" . $filename . '-' .$date . "." . return config('server.settings.document_root') . "/export/" . $filename . '-' . $date . "." .
strtolower($this->fileType); strtolower($this->fileType);
break; break;
default: default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment