实现在线动态打印带图表的VUE页面文件内容

简介: 本文实现将带有erchart图表和表格的VUE页面文件内容打印出来。

1、设计好demo.vue页面(略)

2、编写print.js文件,改文件内容如下:

// 打印类属性、方法定义/* eslint-disable */constPrint=function (dom, options) {
if (!(thisinstanceofPrint)) returnnewPrint(dom, options);
this.options=this.extend({
'noPrint': '.no-print'        }, options);
if ((typeofdom) ==="string") {
this.dom=document.querySelector(dom);
    } else {
this.isDOM(dom)
this.dom=this.isDOM(dom) ?dom : dom.$el;
    }
this.init();
};
Print.prototype= {
init: function () {
varcontent=this.getStyle() +this.getHtml();
this.writeIframe(content);
    },
extend: function (obj, obj2) {
for (varkinobj2) {
obj[k] =obj2[k];
      }
returnobj;
    },
getStyle: function () {
varstr="",
styles=document.querySelectorAll('style,link');
for (vari=0; i<styles.length; i++) {
str+=styles[i].outerHTML;
        }
str+="<style>"+ (this.options.notPrint?this.options.notPrint : '.no-print') +"{display:none;}</style>";
str+="<style>.results{width:100%!important;} .result .title{width:100%;}</style>"; 
returnstr;
    },
getHtml: function () {
varinputs=document.querySelectorAll('input');
vartextareas=document.querySelectorAll('textarea');
varselects=document.querySelectorAll('select');
varcanvass=document.querySelectorAll('canvas');
for (vark=0; k<inputs.length; k++) {
if (inputs[k].type=="checkbox"||inputs[k].type=="radio") {
if (inputs[k].checked==true) {
inputs[k].setAttribute('checked', "checked")
          } else {
inputs[k].removeAttribute('checked')
          }
        } elseif (inputs[k].type=="text") {
inputs[k].setAttribute('value', inputs[k].value)
        } else {
inputs[k].setAttribute('value', inputs[k].value)
        }
      }
for (vark2=0; k2<textareas.length; k2++) {
if (textareas[k2].type=='textarea') {
textareas[k2].innerHTML=textareas[k2].value        }
      }
for (vark3=0; k3<selects.length; k3++) {
if (selects[k3].type=='select-one') {
varchild=selects[k3].children;
for (variinchild) {
if (child[i].tagName=='OPTION') {
if (child[i].selected==true) {
child[i].setAttribute('selected', "selected")
              } else {
child[i].removeAttribute('selected')
              }
            }
          }
        }
      }
//canvass echars图表转为图片for (vark4=0; k4<canvass.length; k4++) {
varimageURL=canvass[k4].toDataURL("image/png");
varimg=document.createElement("img");
img.src=imageURL;
img.setAttribute('style', 'max-width: 100%;');
img.className='isNeedRemove'canvass[k4].style.display='none'canvass[k4].parentNode.style.width='100%'canvass[k4].parentNode.style.textAlign='center'canvass[k4].parentNode.insertBefore(img,canvass[k4].nextElementSibling);
      }
//做分页//style="page-break-after: always"varpages=document.querySelectorAll('.result');
for (vark5=0; k5<pages.length; k5++) {
pages[k5].setAttribute('style', 'page-break-after: always');
      }
returnthis.dom.outerHTML;
    },
writeIframe: function (content) {
varw, doc, iframe=document.createElement('iframe'),
f=document.body.appendChild(iframe);
iframe.id="myIframe";
iframe.style="position:absolute;width:0;height:0;top:-10px;left:-10px;";
// iframe.setAttribute('style', 'position:absolute;width:' + document.querySelector('.results').clientWidth + 'px;height:0;top:-10px;left:-10px;');w=f.contentWindow||f.contentDocument;
doc=f.contentDocument||f.contentWindow.document;
doc.open();
doc.write(content);
doc.close();
varremoves=document.querySelectorAll('.isNeedRemove');
for (vark=0; k<removes.length; k++) {
removes[k].parentNode.removeChild(removes[k]);
        }
var_this=thisiframe.onload=function(){
_this.toPrint(w);
setTimeout(function () {
document.body.removeChild(iframe)
            }, 100)
        }
    },
toPrint: function (frameWindow) {
try {
setTimeout(function () {
frameWindow.focus();
try {
if (!frameWindow.document.execCommand('print', false, null)) {
frameWindow.print();
                    }
                } catch (e) {
frameWindow.print();
                }
frameWindow.close();
            }, 10);
        } catch (err) {
console.log('err', err);
      }
    },
isDOM: (typeofHTMLElement==='object') ?function (obj) {
returnobjinstanceofHTMLElement;
    } :
function (obj) {
returnobj&&typeofobj==='object'&&obj.nodeType===1&&typeofobj.nodeName==='string';
    }
};
constMyPlugin= {}
MyPlugin.install=function (Vue, options) {
// 4. 添加实例方法Vue.prototype.$print=Print}
exportdefaultMyPlugin

3、在vue的main.js文件中添加上面的print.js文件,设置全局引用该文件

importPrintfrom'../static/js/print';

Vue.use(Print) // 注册

4、在demo.vue中的添加打印按钮,如下

<el-buttonclass="no-print"type="primary"icon="document"style="margin:20px 48%" @click="print">打印</el-button>,并在print方法添加如下代码,实现打印功能

print(){      
letself=this;
self.$print(self.$refs.print,{'notPrint':'.no-print'});
},





目录
相关文章
|
7天前
|
缓存 JavaScript 前端开发
vue学习第四章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript与Vue的大一学生。本文介绍了Vue中计算属性的基本与复杂使用、setter/getter、与methods的对比及与侦听器的总结。如果你觉得有用,请关注我,将持续更新更多优质内容!🎉🎉🎉
vue学习第四章
|
7天前
|
JavaScript 前端开发
vue学习第九章(v-model)
欢迎来到我的博客,我是瑞雨溪,一名热爱JavaScript与Vue的大一学生,自学前端2年半,正向全栈进发。此篇介绍v-model在不同表单元素中的应用及修饰符的使用,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
vue学习第九章(v-model)
|
7天前
|
JavaScript 前端开发 开发者
vue学习第十章(组件开发)
欢迎来到瑞雨溪的博客,一名热爱JavaScript与Vue的大一学生。本文深入讲解Vue组件的基本使用、全局与局部组件、父子组件通信及数据传递等内容,适合前端开发者学习参考。持续更新中,期待您的关注!🎉🎉🎉
vue学习第十章(组件开发)
|
13天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
13天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
12天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
12天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
|
13天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
13天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
14天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
下一篇
无影云桌面