首页 > 其他分享 >vue-print打印(含多页打印带表头)

vue-print打印(含多页打印带表头)

时间:2023-10-19 10:58:01浏览次数:30  
标签:function inputs dom 打印 表头 var print options

打印功能开发:
1)使用vuePlugsPrint.js
2)main.js 加入:import vuePlugsPrint from '@/utils/vuePlugsPrint'
                             Vue.use(vuePlugsPrint);

3)创建打印模板页面:templatePrint.vue
4)使用页面引入: <el-col :span="1.5">
                                     <el-button type="info" plain icon="el-icon-printer" size="mini" @click="handlePrint" >打印</el-button>
                                     <template-print :row=" modalObj.form.row " ref="printRef"></template-print>
                               </el-col>
     <script>引入: import templatePrint from '@/views/print/templatePrint'
     定义数据:modalObj: {
                                          form: {
                                                    row: {
                                                           details: null
                                                    }
                                          }
                                       },
             方法:handlePrint() {/**打印 **/
                                              const row = {
                                                                  details: this.queryList /**queryList为打印列表list **/
                                               };
                                              this.modalObj.form.row = row;
                                              this.$nextTick(() => {
                                                                            this.$refs['printRef'].start()
                                               })
                     },

5)代码明细:

vuePlugsPrint.js:

// 打印类属性、方法定义
/* eslint-disable */
const Print = function (dom, options, pageSize) {

if (!(this instanceof Print)) return new Print(dom, options, pageSize);

this.options = this.extend({
'noPrint': '.no-print'
}, options, pageSize);

if ((typeof dom) === "string") {
this.dom = document.querySelector(dom);
} else {
this.isDOM(dom)
this.dom = this.isDOM(dom) ? dom : dom.$el;
}

this.init(pageSize);
};
Print.prototype = {
init: function (pageSize) {
var content = this.getStyle(pageSize) + this.getHtml();
this.writeIframe(content);
},
extend: function (obj, obj2) {
for (var k in obj2) {
obj[k] = obj2[k];
}
return obj;
},

getStyle: function (pageSize) {
var str = "",
styles = document.querySelectorAll('style,link');
for (var i = 0; i < styles.length; i++) {
str += styles[i].outerHTML;
}
str += "<style>" + (this.options.noPrint ? this.options.noPrint : '.no-print') + "{display:none;}</style>";
str += "<style>html,body,div{height: auto!important;}</style>";

str = str.replace('size: A5', `size: ${pageSize}`);

return str;
},

getHtml: function () {
var inputs = document.querySelectorAll('input');
var textareas = document.querySelectorAll('textarea');
var selects = document.querySelectorAll('select');

for (var k = 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')
}
} else if (inputs[k].type == "text") {
inputs[k].setAttribute('value', inputs[k].value)
} else {
inputs[k].setAttribute('value', inputs[k].value)
}
}

for (var k2 = 0; k2 < textareas.length; k2++) {
if (textareas[k2].type == 'textarea') {
textareas[k2].innerHTML = textareas[k2].value
}
}

for (var k3 = 0; k3 < selects.length; k3++) {
if (selects[k3].type == 'select-one') {
var child = selects[k3].children;
for (var i in child) {
if (child[i].tagName == 'OPTION') {
if (child[i].selected == true) {
child[i].setAttribute('selected', "selected")
} else {
child[i].removeAttribute('selected')
}
}
}
}
}

let content = this.dom.outerHTML;
if (content.indexOf('hidden="hidden"') > -1) {
content = content.replace('hidden="hidden"', '');
}
return content;
},

writeIframe: function (content) {
var w, 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:0;height:0;top:-10px;left:-10px;');
w = f.contentWindow || f.contentDocument;
doc = f.contentDocument || f.contentWindow.document;
doc.open();
doc.write(content);
doc.close();
var _this = this
iframe.onload = function () {
_this.toPrint(w, _this.options);
setTimeout(function () {
document.body.removeChild(iframe)
}, 100)
}
},

toPrint: function (frameWindow, options) {
try {
setTimeout(function () {
frameWindow.focus();
try {
if (!frameWindow.document.execCommand('print', false, null)) {
frameWindow.print();
}
if (options.callback ) options.callback()
} catch (e) {
frameWindow.print();
}
frameWindow.close();
}, 10);
} catch (err) {
console.log('err', err);
}
},
isDOM: (typeof HTMLElement === 'object') ?
function (obj) {
return obj instanceof HTMLElement;
} :
function (obj) {
return obj && typeof obj === 'object' && obj.nodeType === 1 && typeof obj.nodeName === 'string';
},
};
const MyPlugin = {}
MyPlugin.install = function (Vue, options) {
// 4. 添加实例方法
Vue.prototype.$print = Print
}
export default MyPlugin

----------------------------------------------------------

templatePrint.vue:

<template>
<div class="template-print" ref="printRef" hidden="hidden">
<TABLE>
<!-- 公共拥有的头部 start -->
<THEAD>
<TR>
<TH></TH >
</TR>
</THEAD>
<!-- 公共拥有的头部 end -->
<TBODY>
<TR>
<TD>
<table class="common-table">
<!-- 制单表头:每页都展示 start -->
<thead>
<tr>
<th>序号</th>
<th>编码</th>
<th>名称</th>
<th>规格</th>
<th>分类</th>
</tr>
</thead>
<!-- 制单表头:每页都展示 end -->
<tbody v-if="row.details.length">
<tr v-for="item in row.details" :key="item.fid">
<td>{{ item.fid }}</td>
<td>{{ item.code }}</td>
<td>{{ item.name }}</td>
<td>{{ item.model }}</td>
<td>{{ item.type }}</td>
</tr>
</tbody>
<div v-if="!row.details.length">
<span>暂无数据</span>
</div>
</table>
</TD>
</TR>
</TBODY>
<!-- 公共拥有的尾部 start -->
<TFOOT>
<TR>
<TD></TD>
</TR>
</TFOOT>
<!-- 公共拥有的尾部 end -->
</TABLE>
</div>
</template>

<script>

export default {
props: ['row'],
methods: {
start() {
this.$print(this.$refs.printRef, {}, 'A4')
},
}
}
</script>

<style lang="stylus" media="print">
@page {
size: auto;
margin: 0;
}

@media print {
* {
color: #000 !important;
}

table {
border-collapse: collapse;
table-layout: fixed;
width 100%;
border-spacing: 0;
}

table, tbody, thead {
width: 100% !important;
}

.template-print {
width: 100% !important;
font-size: 14px;
}

}

.template-print
padding 12px
line-height 1.8

.summary
display flex
flex-wrap wrap

.col1
width 50%

.title
font-size 18px
text-align center

.common-table
td, th
border: 0.05rem solid #000;
font-size: 12px;
text-align: center
border-color: black
</style>

 

标签:function,inputs,dom,打印,表头,var,print,options
From: https://www.cnblogs.com/Vena/p/17774181.html

相关文章

  • IO流,字符输出流PrintWriter
    PrintWriter 具有自动刷新(用这个就不用写flush方法),特点是按行输出字符串 并且可以通过printfln()方法实现自动换行 结果: ......
  • 给定字符串str= "asdfasdweraasdfasdf", 请python统计每个字符出现的次数,并将结果进行
    str="asdfasdweraasdfasdf"char_count={}forcharinstr:ifcharinchar_count:char_count[char]+=1else:char_count[char]=1forchar,countinchar_count.items():print(f"字符'{......
  • 前端调试时不改代码但又想打印变量信息怎么办?
    我们都知道,Chrome的控制台可以在调试的时候打断点。程序运行到这的时候会停止但有时候我们不希望程序断点执行,我们只是想看一些变量的信息。按照以前的方式,我们只能去修改源码增加打印日志的语句,这样既浪费时间,又需要在调试完成后清理掉我们打印的日志代码。其实,Chrome浏览......
  • django服务配置logging 打印接口请求sql日志
    只需要在setting文件下配置:LOGGING={'version':1,'disable_existing_loggers':False,'handlers':{'console':{'class':'logging.StreamHandler',},},......
  • 【gdb】打印函数局部变量的值
    打印函数局部变量的值1.例子:#include<stdio.h>voidfun_a(void){ inta=0; printf("%d\n",a);}voidfun_b(void){ intb=1; fun_a(); printf("%d\n",b);}voidfun_c(void){ intc=2; fun_b(); printf("%d\n",c);......
  • 【gdb】打印内存的值
    打印内存的值1.例子#include<stdio.h>intmain(void){inti=0;chara[100];for(i=0;i<sizeof(a);i++){a[i]=i;}return0;}gdb中使用“x”命令来打印内存的值,格式为“x/nfuaddr”......
  • 打印数组中任意连续元素
    打印数组中任意连续元素1.例子#include<stdio.h>intmain(void){intarray[201];inti;for(i=0;i<201;i++)array[i]=i;return0;}在gdb中,如果要打印数组中任意连续元素的值,可以使用“parray[index]@num”命令(p是print命令的缩写)。其中index......
  • 【gdb】打印数组的索引下标
    打印数组的索引下标1.例子#include<stdio.h>intnum[10]={1<<0,1<<1,1<<2,1<<3,1<<4,1<<5,1<<6,1<<7,1<<8,1<<9};intmain(void){inti;for......
  • 【gdb】打印ASCII和宽字符字符串
    打印ASCII和宽字符字符串1.例子:#include<stdio.h>#include<wchar.h>intmain(void){charstr1[]="abcd";wchar_tstr2[]=L"abcd";return0;}用gdb调试程序时,可以使用“x/s”命令打印ASCII字符串。以上面程序为例:[root@node0......
  • FreeRTOS qemu mps2-an385 bsp 移植制作 :串口打印篇
    开发环境Win1064位+VSCode,ssh远程连接ubuntuVMwareWorkstationPro16+Ubuntu20.04FreeRTOSv202212.01(备注:可以在github获取最新版本)qemuqemu-system-armmps2-an385开发板,qemu版本QEMUemulatorversion4.2.1或更高armgcc交叉编译工具链:当前使用gcc编译环境......