一、指定打印元素
I. Specify print elements
1. Print object
<div id="printid">
这里是要打印的东西
</div>
<!--通过 v-print 调用打印事件 -->
<button v-print="printObj">打印</button>
export default {
    data() {
      return {
         printObj: {
          id: "printid",    // 这里是要打印元素的ID
          popTitle: '',  // 打印的标题
          extraCss: '',  // 打印可引入外部的一个 css 文件
          extraHead: ''  // 打印头部文字
        },
      } 
    }
}

二、打印时tabel表格边框不显示,是因为print打印时不会打印原有的表格样式,需要重新用样式覆盖之前的css样式即可

Second, the tabel table border is not displayed when printing, because the original table style will not be printed when printing, you need to overwrite the previous CSS style with the style

2. CSS style


/*去除页脚*/
  @page{
    size:  auto;  
    margin-bottom: 0mm; //去掉页脚
  }
/* 打印el-tabel表格的样式时表格边框不显示*/
.el-tabel--mini .el-tabel__cell{
 border :1px solid red !important;
}

Logo

前往低代码交流专区

更多推荐