|
@@ -1,10 +1,10 @@
|
|
|
<template>
|
|
|
- <div class="home">
|
|
|
+ <div v-loading="loading" class="home">
|
|
|
<div v-if="fileType == 'xlsx'" style="overflow-y: scroll;" class="home_content">
|
|
|
<div v-html="tableau"></div>
|
|
|
</div>
|
|
|
- <div v-else-if="fileType == 'pdf'" class="home_content">
|
|
|
- <iframe :src="pdfSrc" height="100%" width="100%" frameborder="0"></iframe>
|
|
|
+ <div v-else-if="fileType == 'pdf'" style="overflow-y: scroll;" class="home_content">
|
|
|
+ <pdf v-for="i in numPages" :key="i" :src="pdfSrc" :page="i"></pdf>
|
|
|
</div>
|
|
|
<div v-else-if="fileType == 'docx' || fileType == 'doc'" style="overflow-y: scroll;" class="home_content">
|
|
|
<div ref="file"></div>
|
|
@@ -15,18 +15,23 @@
|
|
|
<script>
|
|
|
import axios from 'axios'
|
|
|
import * as XLSX from 'xlsx'
|
|
|
+import pdf from 'vue-pdf'
|
|
|
export default {
|
|
|
+ components: { pdf },
|
|
|
data () {
|
|
|
return {
|
|
|
+ loading: false,
|
|
|
tableau: null,
|
|
|
fileType: '',
|
|
|
pdfSrc: '',
|
|
|
- docxSrc: ''
|
|
|
+ docxSrc: '',
|
|
|
+ numPages: 1
|
|
|
}
|
|
|
},
|
|
|
created () {
|
|
|
const { query } = this.$route
|
|
|
if (!query) return
|
|
|
+ this.loading = true
|
|
|
const { fileName } = query
|
|
|
this.getFileType(fileName)
|
|
|
},
|
|
@@ -38,6 +43,10 @@ export default {
|
|
|
let workbook = XLSX.read(new Uint8Array(data), { type: "array" }); // 解析数据
|
|
|
var worksheet = workbook.Sheets[workbook.SheetNames[0]]; // workbook.SheetNames 下存的是该文件每个工作表名字,这里取出第一个工作表
|
|
|
this.tableau = XLSX.utils.sheet_to_html(worksheet); // 渲染
|
|
|
+ this.loading = false
|
|
|
+ }).catch(err => {
|
|
|
+ this.loading = false
|
|
|
+ console.error(err)
|
|
|
})
|
|
|
},
|
|
|
getDocxData (fileName) {
|
|
@@ -45,12 +54,17 @@ export default {
|
|
|
responseType: 'blob'
|
|
|
}).then(({ data }) => {
|
|
|
window.docx.renderAsync(data, this.$refs.file) // 渲染到页面
|
|
|
+ this.loading = false
|
|
|
+ }).catch(err => {
|
|
|
+ this.loading = false
|
|
|
+ console.error(err)
|
|
|
})
|
|
|
},
|
|
|
getFileType (dotName) {
|
|
|
if (dotName.includes('pdf')) {
|
|
|
this.fileType = 'pdf'
|
|
|
- this.pdfSrc = './' + dotName
|
|
|
+ // this.loadPDF('./' + dotName)
|
|
|
+ this.getNumPages('./' + dotName)
|
|
|
} else if (dotName.includes('docx') || dotName.includes('doc')) {
|
|
|
this.fileType = 'docx' || 'doc'
|
|
|
this.getDocxData('./' + dotName)
|
|
@@ -58,6 +72,17 @@ export default {
|
|
|
this.fileType = 'xlsx'
|
|
|
this.getXlxsData('./' + dotName)
|
|
|
}
|
|
|
+ },
|
|
|
+ getNumPages (url) {
|
|
|
+ const loadingTask = pdf.createLoadingTask(url)
|
|
|
+ loadingTask.promise.then(pdf => {
|
|
|
+ this.pdfSrc = loadingTask
|
|
|
+ this.numPages = pdf.numPages
|
|
|
+ this.loading = false
|
|
|
+ }).catch((err) => {
|
|
|
+ this.loading = false
|
|
|
+ console.error(err)
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
}
|