vue打印兼容xp32位系统/vue的打印功能

一、vue-print-nb

这个插件很好用,也很简单,但是问题就是不兼容xp32位。

官方安装及使用文档

1.安装

npm install vue-print-nb --save

2.main.js中全局引入

import Print from 'vue-print-nb'
Vue.use(Print); 

3.使用id

<div id="printMe" >
    <p>打印内容</p>
</div>
<button v-print="'#printMer'">打印</button>

二、vuePlugs_printjs

插件地址

1.下载print.js后将其放入plugins文件夹下

|--根目录
|--|--src
|--|--|--plugins
|--|--|--|--print.js

2.main.js中全局引入

import Print from '@/plugs/print'
Vue.use(Print) // 注册

3.页面中使用

<template>
  <div ref="print">
      <p>打印内容</p>
      <p class="no-print">非打印内容 方法1:添加no-print样式类</p>
      <p class="className">非打印内容 方法2:自定义类名</p>
  </div>
  <button @click="print()">打印</button>
</template>

print(){
    this.$print(this.$refs.print,{'no-print':'.className'});
}

4.print.js里面的内容

// 打印类属性、方法定义
/* eslint-disable */
const Print =function(dom, options) {
    if (!(this instanceof Print)) return new Print(dom, options);
  
    this.options = this.extend({
      'noPrint': '.no-print'
    }, options);
  
    if ((typeof dom) === "string") {
      this.dom = document.querySelector(dom);
    } else {
      this.dom = dom;
    }
  
    this.init();
  };
  Print.prototype = {
    init: function () {
      var content = this.getStyle() + this.getHtml();
      this.writeIframe(content);
    },
    extend: function (obj, obj2) {
      for (var k in obj2) {
        obj[k] = obj2[k];
      }
      return obj;
    },
  
    getStyle: function () {
      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>";
  
      return str;
    },
  
    getHtml: function () {
      var inputs = document.querySelectorAll('input');
      var textareas = document.querySelectorAll('textarea');
      var selects = document.querySelectorAll('select');
  
      for (var k in inputs) {
        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)
        }
      }
  
      for (var k2 in textareas) {
        if (textareas[k2].type == 'textarea') {
          textareas[k2].innerHTML = textareas[k2].value
        }
      }
  
      for (var k3 in selects) {
        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')
              }
            }
          }
        }
      }
  
      return this.dom.outerHTML;
    },
  
    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;";
  
      w = f.contentWindow || f.contentDocument;
      doc = f.contentDocument || f.contentWindow.document;
      doc.open();
      doc.write(content);
      doc.close();
      this.toPrint(w);
  
      setTimeout(function () {
        document.body.removeChild(iframe)
      }, 100)
    },
  
    toPrint: function (frameWindow) {
      try {
        setTimeout(function () {
          frameWindow.focus();
          try {
            if (!frameWindow.document.execCommand('print', false, null)) {
              frameWindow.print();
            }
          } catch (e) {
            frameWindow.print();
          }
          frameWindow.close();
        }, 10);
      } catch (err) {
        console.log('err', err);
      }
    }
  };
  const MyPlugin = {}
  MyPlugin.install = function (Vue, options) {
    // 4. 添加实例方法
    Vue.prototype.$print = Print
  }
  export default MyPlugin

缺点:这种方式在开发环境没有问题,但是在生产环境就可能会出现样式丢失的问题。通过webpack打包后,打印功能是否可用,需要后续测试下。
这里是采用的jenkins自动打包,经过测试,生产环境不可用,但是在xp32位系统的时候没有样式丢失的问题。所以这里结合两个插件使用。如下:

封装的组件:

<template>
  <div class="print-content">
    <el-button v-if="isversion!='windowsXp'" type="primary" icon="el-icon-printer" v-print="'#taskForm'">打印</el-button>
    <el-button v-else type="primary" icon="el-icon-printer" @click="handlePrint">打印</el-button>
  </div>
</template>

<script>
export default {
  name: "commonPrint",
  data(){
    return{
      isversion:''
    }
  },
  mounted(){
     var version = navigator.userAgent;

    if (version.indexOf("Windows NT 5.0") != -1) {

        this.isversion="windows2000";

    } else if (version.indexOf("Windows NT 5.1") != -1) {

        this.isversion="windowsXp"

    } else if (version.indexOf("Windows NT 5.2") != -1) {

        this.isversion="windows2003"

    } else if (version.indexOf("Windows NT 6.0") != -1) {

        this.isversion="windowsVista"

    } else if (version.indexOf("Windows NT 6.1") != -1) {

        this.isversion="windows7"

    } else if (version.indexOf("Windows NT 6.2") != -1) {

        this.isversion="windows8"

    } else if (version.indexOf("Windows NT 10.0") != -1) {

        this.isversion="windows10"

    }
  },
  methods: {
    // 打印功能
    handlePrint() {
      this.$print(this.$parent.$refs.taskForms); // 使用
    }
  }
};
</script>

<style lang="scss" scoped>
.print-content {
  display: initial;
  margin: 0 8px;
}
</style>

某些xp32位系统有弹出两次,第一个是空白页第二个是正常的这种bug。

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

echo忘川

谢谢老板们

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值