fix: 解决导出图片白边的问题

This commit is contained in:
奔跑的面条 2022-06-09 08:59:36 +08:00
parent b3422eaede
commit ce34a7ed2a

View File

@ -178,7 +178,9 @@ export const canvasCut = (html: HTMLElement | null, callback?: Function) => {
return
}
html2canvas(html).then((canvas: HTMLCanvasElement) => {
html2canvas(html, {
backgroundColor: null
}).then((canvas: HTMLCanvasElement) => {
window['$message'].success('导出成功!')
downloadByA(canvas.toDataURL(), undefined, 'png')
if (callback) callback()