|
|
|
@ -231,14 +231,14 @@
|
|
|
|
|
class="file-content"
|
|
|
|
|
></div>
|
|
|
|
|
<div v-if="fileExtension === 'pdf'" class="file-content">
|
|
|
|
|
<!-- <pdf
|
|
|
|
|
<pdf
|
|
|
|
|
v-for="i in numPages"
|
|
|
|
|
ref="pdf"
|
|
|
|
|
:key="i"
|
|
|
|
|
:src="pdfUrl"
|
|
|
|
|
:page="i"
|
|
|
|
|
></pdf> -->
|
|
|
|
|
<iframe style="height: 100%; width: 100%" :src="pdfUrl"></iframe>
|
|
|
|
|
></pdf>
|
|
|
|
|
<!-- <iframe style="height: 100%; width: 100%" :src="pdfUrl"></iframe> -->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
|
@ -570,7 +570,7 @@ export default {
|
|
|
|
|
let str1 = str[0].split('.')
|
|
|
|
|
this.fileExtension = str1[1];
|
|
|
|
|
if (this.fileExtension == "pdf") {
|
|
|
|
|
this.pdfUrl = process.env.VUE_APP_BASE_API2 + str[0];
|
|
|
|
|
this.getNumPages(process.env.VUE_APP_BASE_API2 + str[0])
|
|
|
|
|
this.dialogDetails = true;
|
|
|
|
|
} else if (
|
|
|
|
|
this.fileExtension === "docx" ||
|
|
|
|
@ -591,35 +591,35 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// getNumPages(url) {
|
|
|
|
|
// axios({
|
|
|
|
|
// method: "GET",
|
|
|
|
|
// url: url, // 后台接口
|
|
|
|
|
// paramsSerializer: function (params) {
|
|
|
|
|
// return qs.stringify(params, { arrayFormat: "brackets" });
|
|
|
|
|
// },
|
|
|
|
|
// headers: {
|
|
|
|
|
// "Content-Type":
|
|
|
|
|
// "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
|
|
|
|
// },
|
|
|
|
|
// responseType: "blob",
|
|
|
|
|
// })
|
|
|
|
|
// .then((response) => {
|
|
|
|
|
// this.pdfUrl = this.getObjectURL(response.data);
|
|
|
|
|
// const loadingTask = pdf.createLoadingTask(this.pdfUrl);
|
|
|
|
|
// loadingTask.promise
|
|
|
|
|
// .then((pdf) => {
|
|
|
|
|
// this.numPages = pdf.numPages;
|
|
|
|
|
// this.dialogDetails = true;
|
|
|
|
|
// })
|
|
|
|
|
// .catch((err) => {
|
|
|
|
|
// console.error("pdf 加载失败", err);
|
|
|
|
|
// });
|
|
|
|
|
// })
|
|
|
|
|
// .catch((error) => {
|
|
|
|
|
// this.$message.error("" + error);
|
|
|
|
|
// });
|
|
|
|
|
// },
|
|
|
|
|
getNumPages(url) {
|
|
|
|
|
axios({
|
|
|
|
|
method: "GET",
|
|
|
|
|
url: url, // 后台接口
|
|
|
|
|
paramsSerializer: function (params) {
|
|
|
|
|
return qs.stringify(params, { arrayFormat: "brackets" });
|
|
|
|
|
},
|
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type":
|
|
|
|
|
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
|
|
|
|
},
|
|
|
|
|
responseType: "blob",
|
|
|
|
|
})
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.pdfUrl = this.getObjectURL(response.data);
|
|
|
|
|
const loadingTask = pdf.createLoadingTask(this.pdfUrl);
|
|
|
|
|
loadingTask.promise
|
|
|
|
|
.then((pdf) => {
|
|
|
|
|
this.numPages = pdf.numPages;
|
|
|
|
|
this.dialogDetails = true;
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {
|
|
|
|
|
console.error("pdf 加载失败", err);
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch((error) => {
|
|
|
|
|
this.$message.error("" + error);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 文件流转url
|
|
|
|
|
getObjectURL(file) {
|
|
|
|
|
let url = null;
|
|
|
|
|