详解如何在vue项目中使用lodop打印插件
程序员文章站
2022-06-20 20:25:18
项目中使用到打印的功能。领导推荐使用lodop
lodop是什么东东,反正就是可以定制打印的插件。。。
既然是插件,vue的渐进式开发。完全可以拿来化为己用。
如何使...
项目中使用到打印的功能。领导推荐使用lodop
lodop是什么东东,反正就是可以定制打印的插件。。。
既然是插件,vue的渐进式开发。完全可以拿来化为己用。
如何使用那?先大概看了下开发文档,就是一堆demo,一个js文件,三个安装程序,我擦,这么简单。come on 电脑安装c-lodop,就可以打印预览来了。
开工,翻来覆去就一个lodopfuncs.js是干货,扔到项目中。就差怎么调里面的方法了。
如何引用,当然得改造喽
lodopfuncs.js 方法改造如下
//====判断是否需要安装clodop云打印服务器:==== export function needclodop(){ ...... } //====获取lodop对象的主过程:==== export function getlodop(oobject,oembed){ ...... }
完事,然后就是怎么使用了
在具体的调用页面
import {getlodop} from '../common/lodopfuncs' ...... methods: { printpdf() { this.createoneformpage(); // lodop.print(); lodop.preview(); }, createoneformpage() { lodop = getlodop(); lodop.print_init("订货单"); lodop.set_print_style("fontsize", 18); lodop.set_print_style("bold", 1); lodop.add_print_text(50, 231, 260, 39, "打印页面部分内容"); lodop.add_print_htm(88, 200, 350, 600, document.getelementbyid("form1").innerhtml); }, } ......
你以为就这么多。对的就这
现在碰见个指令打印问题,在项目中直接把部分指令都打印出来了,不能打印出正常样式,™
现在都是驱动打印机,暂时不考虑指令的....
常见问题:浏览器alert警告lodop打印出错之类的,首先得把lodop本地服务打开。
鉴于好多人提问,完整的代码还是贴出来吧。(没修改什么东西啊....)
lodopfuncs.js
var createdoklodop7766=null; //====判断是否需要安装clodop云打印服务器:==== export function needclodop(){ try{ var ua=navigator.useragent; if (ua.match(/windows\sphone/i) !=null) return true; if (ua.match(/iphone|ipod/i) != null) return true; if (ua.match(/android/i) != null) return true; if (ua.match(/edge\d?\d+/i) != null) return true; var vertrident=ua.match(/trident\d?\d+/i); var verie=ua.match(/msie\d?\d+/i); var veropr=ua.match(/opr\d?\d+/i); var verff=ua.match(/firefox\d?\d+/i); var x64=ua.match(/x64/i); if ((vertrident==null)&&(verie==null)&&(x64!==null)) return true; else if ( verff !== null) { verff = verff[0].match(/\d+/); if ((verff[0]>= 42)||(x64!==null)) return true; } else if ( veropr !== null) { veropr = veropr[0].match(/\d+/); if ( veropr[0] >= 32 ) return true; } else if ((vertrident==null)&&(verie==null)) { var verchrome=ua.match(/chrome\d?\d+/i); if ( verchrome !== null ) { verchrome = verchrome[0].match(/\d+/); if (verchrome[0]>=42) return true; }; }; return false; } catch(err) {return true;}; }; //====页面引用clodop云打印必须的js文件:==== if (needclodop()) { var head = document.head || document.getelementsbytagname("head")[0] || document.documentelement; var oscript = document.createelement("script"); oscript.src ="http://localhost:8000/clodopfuncs.js?priority=1"; head.insertbefore( oscript,head.firstchild ); //引用双端口(8000和18000)避免其中某个被占用: oscript = document.createelement("script"); oscript.src ="http://localhost:18000/clodopfuncs.js?priority=0"; head.insertbefore( oscript,head.firstchild ); }; //====获取lodop对象的主过程:==== export function getlodop(oobject,oembed){ var strhtminstall="<br><font color='#ff00ff'>打印控件未安装!点击这里<a href='install_lodop32.exe' target='_self'>执行安装</a>,安装后请刷新页面或重新进入。</font>"; var strhtmupdate="<br><font color='#ff00ff'>打印控件需要升级!点击这里<a href='install_lodop32.exe' target='_self'>执行升级</a>,升级后请重新进入。</font>"; var strhtm64_install="<br><font color='#ff00ff'>打印控件未安装!点击这里<a href='install_lodop64.exe' target='_self'>执行安装</a>,安装后请刷新页面或重新进入。</font>"; var strhtm64_update="<br><font color='#ff00ff'>打印控件需要升级!点击这里<a href='install_lodop64.exe' target='_self'>执行升级</a>,升级后请重新进入。</font>"; var strhtmfirefox="<br><br><font color='#ff00ff'>(注意:如曾安装过lodop旧版附件npactivexplugin,请在【工具】->【附加组件】->【扩展】中先卸它)</font>"; var strhtmchrome="<br><br><font color='#ff00ff'>(如果此前正常,仅因浏览器升级或重安装而出问题,需重新执行以上安装)</font>"; var strclodopinstall="<br><font color='#ff00ff'>clodop云打印服务(localhost本地)未安装启动!点击这里<a href='http://www.c-lodop.com/download/clodop_setup_for_win32nt_https_3.008extend.zip' target='_self'>执行安装</a>,安装后请刷新页面。</font>"; var strclodopupdate="<br><font color='#ff00ff'>clodop云打印服务需升级!点击这里<a href='clodop_setup_for_win32nt.exe' target='_self'>执行升级</a>,升级后请刷新页面。</font>"; var lodop; try{ var isie = (navigator.useragent.indexof('msie')>=0) || (navigator.useragent.indexof('trident')>=0); if (needclodop()) { try{ lodop=getclodop();} catch(err) {}; if (!lodop && document.readystate!=="complete") {alert("c-lodop没准备好,请稍后再试!"); return;}; if (!lodop) { // if (isie) document.write(strclodopinstall); else // document.documentelement.innerhtml=strclodopinstall+document.documentelement.innerhtml; // return; } else { if (clodop.cversion<"3.0.0.2") { if (isie) document.write(strclodopupdate); else document.documentelement.innerhtml=strclodopupdate+document.documentelement.innerhtml; }; if (oembed && oembed.parentnode) oembed.parentnode.removechild(oembed); if (oobject && oobject.parentnode) oobject.parentnode.removechild(oobject); }; } else { var is64ie = isie && (navigator.useragent.indexof('x64')>=0); //=====如果页面有lodop就直接使用,没有则新建:========== if (oobject!=undefined || oembed!=undefined) { if (isie) lodop=oobject; else lodop=oembed; } else if (createdoklodop7766==null){ lodop=document.createelement("object"); lodop.setattribute("width",0); lodop.setattribute("height",0); lodop.setattribute("style","position:absolute;left:0px;top:-100px;width:0px;height:0px;"); if (isie) lodop.setattribute("classid","clsid:2105c259-1e0c-4534-8141-a753534cb4ca"); else lodop.setattribute("type","application/x-print-lodop"); document.documentelement.appendchild(lodop); createdoklodop7766=lodop; } else lodop=createdoklodop7766; //=====lodop插件未安装时提示下载地址:========== if ((lodop==null)||(typeof(lodop.version)=="undefined")) { if (navigator.useragent.indexof('chrome')>=0) document.documentelement.innerhtml=strhtmchrome+document.documentelement.innerhtml; if (navigator.useragent.indexof('firefox')>=0) document.documentelement.innerhtml=strhtmfirefox+document.documentelement.innerhtml; if (is64ie) document.write(strhtm64_install); else if (isie) document.write(strhtminstall); else document.documentelement.innerhtml=strhtminstall+document.documentelement.innerhtml; return lodop; }; }; if (lodop.version<"6.0") { if (!needclodop()){ if (is64ie) document.write(strhtm64_update); else if (isie) document.write(strhtmupdate); else document.documentelement.innerhtml=strhtmupdate+document.documentelement.innerhtml; }; return lodop; }; //===如下空白位置适合调用统一功能(如注册语句、语言选择等):=== //lodop.set_licenses("北京xxxxx公司","8xxxxxxxxxxxxx5","",""); //=========================================================== return lodop; } catch(err) {alert("getlodop出错:"+err);}; };
页面调用如下
<template> <div class="demo"> <el-button @click="printpdf" >打印</el-button> <form id="form1"> <table border="1" width="300" id="tb01" bgcolor="#ccffcc" style="border:solid 1px black;border-collapse:collapse"><tr><td width="133" id="mtb001"> <font face="黑体" color="#ff0000" size="3"><u> 《表单一》 </u></font></td></tr></table> <table border="1" width="300" height="106" cellspacing="0" bgcolor="#ccffff"style="border-collapse:collapse;table-layout:fixed;border:solid 1px black;"><tr> <td width="66" height="16" style="border:solid 1px black"><font color="#0000ff">a</font><font color="#0000ff">等</font></td> <td width="51" height="16" style="border:solid 1px black"><font color="#0000ff">b</font><font color="#0000ff">等</font></td> <td width="51" height="16" style="border:solid 1px black"><font color="#0000ff">c</font><font color="#0000ff">等</font></td></tr> <tr> <td width="66" height="16" style="border:solid 1px black">a<sub>01</sub></td> <td width="80" height="12" style="border:solid 1px black">中-001</td> <td width="51" height="12" style="border:solid 1px black">c1<sup>x</sup></td> </tr> <tr> <td width="66" height="16" style="border:solid 1px black">a<sub>02</sub>φ</td> <td width="80" height="16" style="border:solid 1px black">日-スの</td> <td width="51" height="16" style="border:solid 1px black"><font face='vernada'>7㎥</font></td> </tr> <tr><td width="66" height="16" style="border:solid 1px black;overflow:hidden">a<sub>03</sub><nobr>over隐藏后面的:1234567890</nobr> </td><td width="80" height="16" style="border:solid 1px black;overflow:hidden">韩-안녕</td><td width="51" height="16">c3<sup>x</sup> </td></tr> </table> </form> </div> </template> <script> import {getlodop} from '../common/lodopfuncs' export default { name: "demo", data() { return {} }, methods: { // 查询数据 printpdf() { let lodop = getlodop(); lodop.print_init("订货单"); lodop.set_print_style("fontsize", 18); lodop.set_print_style("bold", 1); lodop.add_print_text(50, 231, 260, 39, "打印页面部分内容"); lodop.add_print_htm(88, 200, 350, 600, document.getelementbyid("form1").innerhtml); // lodop.print(); lodop.preview(); }, } } </script>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。