问题:vue打印elementUI表格边框显示不全(使用的window.print())

在项目中需要实现打印功能,但是通常表格会打印不全
就像这个样子:
在这里插入图片描述
解决:使用原生的表格就不会存在这种问题了

打印功能

使用window.print()打印功能
1、创建一个新的页面,将要打印的内容放入到页面中,打印成功后,然后销毁该页面(参考的其他人的代码)

//创建一个div
 var  printPage= document.createElement("div");
 //插入要打印内容的style
   printPage.innerHTML = `<style> table {border-collapse: collapse;
    margin: 0 auto;text-align: center;border-color: #dcdfe6;color:#606266; } th,td { width: 150px;height: 60px;}</style>`
 //将要打印内容插入
  var content = this.$refs["content"];
      printPage.innerHTML += content.innerHTML;
      printPage.style.position = "fixed";
      printPage.style.left = "0";
      printPage.style.top = "0";
      printPage.style.width = "100%";
      printPage.style.height = "100%";
      printPage.style.zIndex = "1000";
      printPage.style.background = "#fff";
      printPage.style.overflow = "auto";
      document.body.appendChild(printPage);
      window.print();
      document.body.removeChild(printPage);
Logo

前往低代码交流专区

更多推荐