[fix] 导出excel
This commit is contained in:
parent
973d8986a8
commit
39d5c8b197
@ -33,6 +33,6 @@ class DownloadController extends BaseAdminController
|
|||||||
//下载前删除缓存
|
//下载前删除缓存
|
||||||
Cache::delete($fileKey);
|
Cache::delete($fileKey);
|
||||||
|
|
||||||
return download($fileInfo['src'] . $fileInfo['name'], $fileInfo['name']);
|
return response()->download($fileInfo['src'] . $fileInfo['name'],$fileInfo['name']);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -92,8 +92,7 @@ trait ListsExcelTrait
|
|||||||
}
|
}
|
||||||
$writer->save($src . $this->fileName);
|
$writer->save($src . $this->fileName);
|
||||||
//设置本地excel缓存并返回下载地址
|
//设置本地excel缓存并返回下载地址
|
||||||
$vars = ['file' => $exportCache->setFile($this->fileName)];
|
return 'http://'.request()->host().'/admin/download/export?file='.$exportCache->setFile($this->fileName);
|
||||||
return (string)(url('admin/download/export', $vars, true, true));
|
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @notes 获取导出信息
|
* @notes 获取导出信息
|
||||||
|
Loading…
x
Reference in New Issue
Block a user