This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nezha-fronted/nezha-fronted/src/components/common/mixin/htmlToPdfMixin.js
2022-04-08 13:48:49 +08:00

14 lines
266 B
JavaScript

export default {
methods: {
htmlToPdf () {
const dom = document.getElementsByClassName(this.pdfId)[0]
if (dom) {
this.showScreenLoading(true)
this.getPdf(dom)
} else {
this.showScreenLoading(false)
}
}
}
}