Merge remote-tracking branch 'origin/master'

This commit is contained in:
wenyann 2020-11-26 13:55:52 +08:00
commit c1c8f35296
1 changed files with 8 additions and 6 deletions

View File

@ -271,12 +271,14 @@ export default {
let reset = this.exportReportReset; let reset = this.exportReportReset;
this.$nextTick(function () { this.$nextTick(function () {
html2canvas(document.getElementById('performanceReportExport'), { setTimeout(() => {
scale: 2 html2canvas(document.getElementById('performanceReportExport'), {
}).then(function (canvas) { scale: 2
exportPdf(name, [canvas]); }).then(function (canvas) {
reset(); exportPdf(name, [canvas]);
}); reset();
});
}, 1000);
}); });
}, },
exportReportReset() { exportReportReset() {