当前位置:   article > 正文

vue-plugin-hiprint简单使用打印html

vue-plugin-hiprint

本文实现了无预览 指定打印机直接打印html,附带一个快递单模板

开发阶段安装了三个依赖

npm install vue-plugin-hiprint
npm i jquery --save-d
npm install socket.io
  • 1
  • 2
  • 3

在main.js中

import {hiPrintPlugin} from 'vue-plugin-hiprint'
Vue.use(hiPrintPlugin, '$pluginName')


import $ from "jquery";
window.jquery = window.$ = $;
Vue.prototype.$ = jquery
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在项目/public/index.html中

   <link rel="stylesheet" type="text/css" media="print" href="https://cdn.jsdelivr.net/npm/vue-plugin-hiprint@latest/dist/print-lock.css">
  • 1

最后就到你需要打印的路由了


mounted() {
    this.init()
  },
   methods: {
     init() {
      // 初始化 打印对象
      const hiprintTemplate_ = new this.$pluginName.PrintTemplate()
      this.hiprintTemplate = hiprintTemplate_
    },
      // 获取打印机列表
    getPrinterList() {
      console.log(window.hiwebSocket)
      if (window.hiwebSocket.opened === false) {
        this.$notify.error('打印机客户端未连接')
      }
      // 模板对象获取
      const printerList_ = this.hiprintTemplate.getPrinterList()
      // console.info(printerList_)
    },
     confirmPrintPrint() {

      // 如果在 main.js 中设置了取消自动连接客户端 是获取不到打印机列表的!!!
      if (window.hiwebSocket.opened === false) {
        this.$notify.error('打印机客户端未连接')
      }

      // 这一句代码 如果打印出来有问题 可以尝试加进去,没有出现 则不用加
      // 初始化 provider
      this.$pluginName.init({
        providers: [defaultElementTypeProvider()]
      })

      // 这一句代码 如果打印出来有问题 可以尝试加进去,没有出现 则不用加
      this.$pluginName.PrintElementTypeManager.buildByHtml(this.$('.ep-draggable-item'))

      // 不要使用 this.hiprintTemplate 打印,会出现重复打印,如果要用,请每次打印 都清空内容
      const hiprintTemplate_ = new this.$pluginName.PrintTemplate()
      //打印方法
	hiprintTemplate_.printByHtml($("#printBill"))//预览打印

	 //hiprintTemplate_.printByHtml2($("#printIframeEMS"), {//跳过预览直接打印
            //    printer: '邮政', // 指定打印机 打印机 名称
              //  title: '邮政打印任务',
             //   color: false, // 是否打印颜色 默认 true
              //  copies: 1, // 打印份数 默认 1
             // });
      }

   },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50

官网文档中还有一种通过拖拽生成模板的方式,再通过print2方法向其中添加数据的方式我没使用
// 直接打印 带参数
// hiprintTemplate_.print2(null, {
// printer: ‘webSockets’, // 指定打印机 打印机 名称
// title: ‘打印任务名称’,
// color: false, // 是否打印颜色 默认 true
// copies: 1, // 打印份数 默认 1
// });

}
  • 1

快递模板

 <!-- 打印面单EMS-->
      <div id="printIframeEMS" style="padding: 0 ; margin: 0 ;">
        <div style="margin:0px auto 0px;page-break-after:always" v-for="item, index in dataEMS" :key="index">
          <div style="margin-left:5px ;padding: 0 50px;">
            <div
              style="height: 70px;border: 1px dotted #000;font-size: 12px !important;overflow: hidden;box-sizing:border-box;">
              <div style="width: 100%;height: 100%;float: left;text-align: center;box-sizing:border-box;">
                <div style="float: right;">
                  <div style="font-size: 16px;margin-top:1px;text-align: right;">国际快递</div>
                </div>
                <div class="three" style="font-size: 14px;margin:1px 0;margin-top: 40px; text-align: center !important;">
                  {{ item.bigPen }}</div>
              </div>
            </div>
            <div
              style="height: 95px;border: 1px dotted #000;font-size: 12px !important;overflow: hidden;border-top:none;box-sizing:border-box;">
              <div
                style="width: 10%;height: 100%;float: left;border-right: 1px dotted #000;padding:5px 0 0 5px;box-sizing:border-box;">
                <div>
                  收件:
                </div>
              </div>
              <div
                style="font-size:12px;text-align:center;display:block;padding-top: 0px;box-sizing: border-box;float: left; width: 88%;">
                <div style="padding-left:5px;box-sizing:border-box;text-align: left;">
                  收件地址:<span>{{ item.consigneeAddress }}</span></div>
                <div style="padding-left:5px;box-sizing:border-box;text-align: left;">收件电话:<span
                    style="margin-right:3px">{{ item.consigneePhone }}</span><br>收件人:<span>{{ item.consigneeName }}</span>
                </div>

              </div>
            </div>
            <div
              style="height: 65px;border: 1px dotted #000;font-size: 12px !important;overflow: hidden;border-top:none;box-sizing:border-box;">
              <div
                style="width: 10%;height: 100%;float: left;border-right: 1px dotted #000;padding:5px 0 0 5px;box-sizing:border-box;">
                <div>
                  寄件:<span></span>
                </div>
              </div>
              <div
                style="font-size:12px;text-align:center;display:block;padding-top: 0px;box-sizing: border-box;float: left; width: 88%;">
                <div style="padding-left:5px;box-sizing:border-box;text-align: left;">寄件始发地:<span>{{ item.senderAddress
                }}</span> </div>
                <div style="padding-left:5px;box-sizing:border-box;text-align: left;">寄件人电话:<span>{{ item.senderTelephone
                }}</span></div>
              </div>
            </div>
            <div
              style="height: 80px;border: 1px dotted #000;font-size: 12px !important;overflow: hidden;box-sizing:border-box;">
              <div style="width: 100%;height: 100%;float: left;text-align: center;box-sizing:border-box;">
                <div style="font-size: 22px;margin-top:1px;"></div>
                <div style="font-size: 15px;">
                  <div><img :src="item.logisticsImg" alt="" style="max-width: 90%;height: 50px;"></div>
                  <div style="letter-spacing:5px">{{ item.logisticsNo }}</div>
                </div>
              </div>
            </div>
            <div
              style="height: 100px;border: 1px dotted #000;border-top:none;font-size: 12px !important;overflow: hidden;box-sizing:border-box;">
              <div
                style="width: 55%;height: 100%;float: left;border-right: 1px dotted #000;padding-right: 0;margin-left: 0;padding:0;box-sizing:border-box;">

                <div style="line-height:13px; margin-bottom: 0; width: 100%;font-size:10px">
                  快件送达收件人地址,经收件人或收件人(寄件人)允许的代收人签字,视为送达,您的签字代表您已签收此包裹,并已确认商品信息无误,包装完好,没有划痕,破损等方面质量问题</div>
                <div class="time" style="font-size: 12px;">{{ item.createTime }}</div>
              </div>
              <div style="width: 45%;float: left;height: 100%;padding:5px 0 0 5px;box-sizing:border-box;">
                <div style="margin-bottom: 0px;font-size:10px">
                  收件人/代收人:</div>
                <div style=" margin-bottom: 0px;font-size:10px;white-space: nowrap;">
                  签收时间:&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;</div>
                <div style="margin-top: 0;font-size:10px">

                  快件送达收货人地址,经收件人或收件人允许的代收人签字视为送达</div>
              </div>
            </div>
            <div
              style="height: 60px;border: 1px dotted #000;font-size: 12px !important;overflow: hidden;box-sizing:border-box;">
              <div style="width: 100%;height: 100%;float: left;text-align: center;box-sizing:border-box;">
                <div style="margin-top:0px;text-align: left;">内件描述: <span>/Description of Contents</span></div>
                <div style="margin-top:0px;text-align: left;">
                  <span>{{ item.commodityDescription }}</span>
                </div>
              </div>
            </div>
          </div>
        </div>
        <!-- </div> -->

      </div>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/629290
推荐阅读
相关标签
  

闽ICP备14008679号