预览pdf文件

 

 

FileDownload(this.upStandFileId)
        .then((res) => {
          //  预览文件
          const binaryData = [res.data];
          const pdfUrl = window.URL.createObjectURL(
            new Blob(binaryData, {
              type: "application/pdf",
            })
          );
          window.open(pdfUrl);
        })
        .catch(() => {
          this.$message.error("查看失败");
        });
posted @ 2022-07-19 23:21  不服憋着  阅读(72)  评论(0编辑  收藏  举报