日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > vue >内容正文

vue

vue中pdf预览组件_Vue+ElementUI使用vue-pdf实现预览功能

發布時間:2023/12/9 vue 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 vue中pdf预览组件_Vue+ElementUI使用vue-pdf实现预览功能 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Vue + ElementUI項目中使用vue-pdf實現簡單預覽,供大家參考,具體內容如下

1、安裝 vue-pdf

npm install --save vue-pdf

2、在vue頁面中導入對應的組件

我這是通過點擊 預覽 按鈕 獲取id打開一個dialog來實現

:visible.sync="viewVisible" width="80%" center

@close='closeDialog'>

上一頁

下一頁

當前第{{pdfPage}}頁 / 共{{pageCount}}頁

:src="src"

:page="pdfPage"

@num-pages="pageCount = $event"

@page-loaded="pdfPage = $event"

style="display: inline-block; width: 100%"

>

import pdf from 'vue-pdf';

export default {

components: {

pdf

},

data() {

return {

//PDF預覽

viewVisible: false,

src: null,

pdfPage : 1,

pageCount: 0,

}

},

methods:{

//PDF預覽

previewPDF(row){

this.src = pdf.createLoadingTask(documentConstants.previewPDFUrl+row.contractId);

this.src.then(pdf => {

this.viewVisible = true;

});

},

//關閉窗口初始化PDF頁碼

closeDialog(){

this.pdfPage = 1;

},

//PDF改變頁數

previousPage(){

var p = this.pdfPage

p = p>1?p-1:this.pageCount

this.pdfPage = p

},

nextPage(){

var p = this.pdfPage

p = p

this.pdfPage = p

}

}

}

3、Controller的返回

@RequestMapping(value = "/previewPDF/{contractId}")

public ResponseEntity previewPDF(@PathVariable Long contractId) throws TException, IOException {

ContractAttachmentTmpModelDTO model = contractScanManagementRpcService.queryContractAttachmentTmp(contractId);

HttpHeaders headers = new HttpHeaders();

headers.setContentDispositionFormData("attachment", model.getAttachmentName());

headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);

return new ResponseEntity(model.getAttachmentData(),

headers, HttpStatus.OK);

}

總結:這個是實現一個簡單的預覽功能。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持谷谷點程序。

總結

以上是生活随笔為你收集整理的vue中pdf预览组件_Vue+ElementUI使用vue-pdf实现预览功能的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。