js フロントエンドは、スキャナーでスキャンしたデータを取得し、バーコードを印刷し、バッチで印刷します。

コードスキャンガンはキーボード入力装置に相当し、一連の数字を入力した後にエンターキーが追加されます。

ただし、実際の開発ではスキャナ入力とキーボードユーザー入力を区別する必要がありますが、違いはスキャナ入力が非常に高速であることです。

1. バーコードスキャナーでスキャンしたデータを取得する


    //   监听扫码
    window.document.onkeypress = (e) => {
      if (window.event) {
        // IE
        this.nextCode = e.keyCode;
      } else if (e.which) {
        // Netscape/Firefox/Opera
        this.nextCode = e.which;
      }
      if (e.which === 13) {
        // 键盘回车事件
        if (this.code.length < 3) return; // 扫码枪的速度很快,手动输入的时间不会让code的长度大于2,所以这里不会对扫码枪有效
        this.parseQRCode(this.code); // 获取到扫码枪输入的内容,做别的操作
        this.lastCode = "";
        this.lastTime = "";
        return;
      }

      this.nextTime = new Date().getTime();
      if (
        this.lastCode &&
        this.lastTime &&
        this.nextTime - this.lastTime > 500
      ) {
        // 当扫码前有keypress事件时,防止首字缺失
        this.code = e.key;
      } else if (this.lastCode && this.lastTime) {
        this.code += e.key;
      }
      this.lastCode = this.nextCode;
      this.lastTime = this.nextTime;
    };

this.parseQRCode 関数は、処理するスキャン データを取得することです。ここでの私のロジックは、バーコードを取得するために要求したバックグラウンド データを取得することです。

 parseQRCode(code) {
    
        this.addCodeInfo.DoType = "1";
        if (code) {
          this.addCodeInfo.VehicleCode = code;
          this.code = "";
        }
        if (!this.addCodeInfo.VehicleCode) {
          this.$message({
            message: "请输入车架编号",
            type: "warning",
          });
          return;
       
      
      getCodeApi(this.addCodeInfo)
        .then((res) => {
          if (res.Code == "0") {
              this.QrCode = res.QrCode;
              if (this.isPrint) {
                this.$nextTick(() => {
                  this.printFn();//这是打印的方法
                });
              }
            this.$message({
              message: res.Message,
              type: "success",
            });
          }
        })
        .catch((e) => {
          console.log("e", e);
        });
    },

UI部分

 <template>
          <div id="printAreass" class="contents">
            <div>
              <span class="printTitle">请勿撕毁 以便保修</span>
              <img :src="QrCode" class="QrCode-img" alt="条形码" />
              <span class="printTitle">{
   
   { addCodeInfo.VehicleCode }}</span>
            </div>
          </div>
        </template>

2. コードをスキャンしたらすぐに印刷します

printFn() {
     //给要打印的内容加样式
      const styleSheet = `<style>
      body{margin: 0 0}
      .contents {display: flex;
                  flex-direction: column;
                  display: block;
            width: 250px;
            height: 100px;
            background-color: #fff;
            text-align: center;
            margin: 0 auto;
           page-break-after:always}
      .printTitle{font-size: 17px; font-weight: bold; color: black;}
      .QrCode-img {
        width: 250px;
        margin: 3px 0;
      }
        </style>`;
      var newWin = window.open(""); // 新打开一个空窗口
      var imageToPrint = document.getElementById("printAreass"); // 获取需要打印的内容
      newWin.document.write(imageToPrint.outerHTML); // 将需要打印的内容添加进新的窗口
      newWin.document.head.innerHTML = styleSheet; // 给打印的内容加上样式
      newWin.document.close(); // 在IE浏览器中使用必须添加这一句
      newWin.focus(); // 在IE浏览器中使用必须添加这一句
      setTimeout(function () {
        newWin.print(); // 打开打印窗口
        newWin.close(); // 关闭打印窗口
      }, 100);
    },

結果を示す:

 

3. バッチ印刷

私は要素 UI、複数選択、全選択の形式を使用しています

 UI部分

<template>
      <div
        v-for="(item, index) in multipleSelection"
        :id="'content' + index"
        :key="index"
        class="content"
      >
        <div>
          <span class="printTitle">请勿撕毁 以便保修</span>
          <img :src="item.QrCode" class="QrCode-img" alt="条形码" />
          <span class="printTitle">{
   
   { item.VehicleCode }}</span>
        </div>
      </div>
    </template>

ロジック部

 batchPrint() {
      if (this.multipleSelection.length == 0) {
        this.$message({
          message: "请选择要打印的数据",
          type: "warning",
        });
        return;
      }
      const styleSheet = `<style>
      body{margin: 0 0}
      .content {display: flex;
                  flex-direction: column;
                  display: block;
            width: 250px;
            height: 100px;
            background-color: #fff;
            text-align: center;
            margin: 0 auto;
           page-break-after:always}
      .printTitle{font-size: 17px; font-weight: bold; color: black;}
      .QrCode-img {
        width: 250px;
        margin: 3px 0;
      }
</style>`;
      const data = this.multipleSelection;
      // 打印
      var newWin = window.open(""); // 新打开一个空窗口
      data.forEach((item, i) => {
        var imageToPrint = document.getElementById("content" + i); // 获取需要打印的内容
        newWin.document.write(imageToPrint.outerHTML); // 将需要打印的内容添加进新的窗口
      });
      newWin.document.head.innerHTML = styleSheet; // 给打印的内容加上样式
      newWin.document.close(); // 在IE浏览器中使用必须添加这一句
      newWin.focus(); // 在IE浏览器中使用必须添加这一句
      setTimeout(function () {
        newWin.print(); // 打开打印窗口
        newWin.close(); // 关闭打印窗口
        if (newWin.closed) {
          this.$refs.multipleTable.clearSelection();
        }
      }, 100);
    },

結果を示す:

単一印刷と複数印刷は実際には同じであり、複数印刷は単なるサイクルです

この機能は、工場出荷後にコードをスキャンしてソースを追跡することです。

おすすめ

転載: blog.csdn.net/weixin_45308405/article/details/127963428