美文网首页
Lodop批量打印

Lodop批量打印

作者: 铲事官 | 来源:发表于2019-04-01 14:15 被阅读0次
   async  HandleWithPrint() {
      for (let item of this.multipleSelection) {
        await this.RequestEveryItem(item);
      }
      this.printdialogflag = false;
    },
    RequestEveryItem(item) {
      let self = this;
      return new Promise(function (resolve) {
        setTimeout(() => {
            self.printWithLodop(item);
        }, 1000);

      });
    }

相关文章

网友评论

      本文标题:Lodop批量打印

      本文链接:https://www.haomeiwen.com/subject/hrlvbqtx.html