62,243
社区成员




let html=this.$refs.printer.$el.innerHTML;
const document = window.document;
const iframe = window.frames[0];
iframe.document.head.innerHTML = document.head.innerHTML;
iframe.document.body.innerHTML = html;
// 打印
setTimeout(() => {
iframe.window.print();
}, 200);