1.表格数据比较多加了横向滚动和竖向滚动,导致打印出问题
主要原因是fixed导致,但是又必须得滚动和打印
方法如下:
1.
2.
is_fixed: true,//data中定义初始值
3.打印时设置为false,记得要改回true
if (key == 2) {
this.is_fixed = false //打印时取消固定
this.$nextTick(() => {
prints({
printable: ‘ckid’,
type: ‘html’,
header: ‘门店工资表’,
headerStyle: ‘text-align:center;width:100%;border:1px #000 solid;’,
scanStyles: false,
style:
‘table { table-layout: fixed; } table tr td,th {text-align:center; border-collapse: collapse;padding: 15px;border:1px #000 solid; width:20px } th { }’, // 表格样式
})
})
setTimeout(() => {
this.is_fixed = true //改回固定
}, 1000)
}