mirror of
https://github.com/dataease/dataease.git
synced 2026-05-17 15:00:59 +08:00
Merge pull request #11884 from web677/fix-bug-imgUtils-downloadCanvas-error
fix: imgUtils中downloadCanvas报错
This commit is contained in:
@@ -88,6 +88,7 @@ export function downloadCanvas2(type, canvasDom, name, callBack?) {
|
||||
const a = document.createElement('a')
|
||||
a.setAttribute('download', name)
|
||||
a.href = dataUrl
|
||||
document.body.appendChild(a)
|
||||
a.click()
|
||||
document.body.removeChild(a)
|
||||
} else {
|
||||
@@ -123,6 +124,7 @@ export function downloadCanvas(type, canvasDom, name, callBack?) {
|
||||
const a = document.createElement('a')
|
||||
a.setAttribute('download', name)
|
||||
a.href = dataUrl
|
||||
document.body.appendChild(a)
|
||||
a.click()
|
||||
document.body.removeChild(a)
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user