|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
* @Author: kery.chen
|
|
|
|
|
* @Description: 总体概览左侧
|
|
|
|
|
* @Date: 2021-11-30 11:08:50
|
|
|
|
|
* @LastEditTime: 2023-08-22 17:20:02
|
|
|
|
|
* @LastEditTime: 2023-08-23 17:15:27
|
|
|
|
|
* @FilePath : \\tcingiocpro\\src\\views\\privateOrder\\ecosphere\\components\\componentLeft.vue
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
|
|
|
@ -330,7 +330,7 @@
|
|
|
|
|
>
|
|
|
|
|
<div
|
|
|
|
|
v-if="fileExtension === 'docx' || fileExtension === 'doc'"
|
|
|
|
|
ref="file"
|
|
|
|
|
ref="fileDoc"
|
|
|
|
|
class="file-content"
|
|
|
|
|
></div>
|
|
|
|
|
<div v-if="fileExtension === 'pdf'" class="file-content">
|
|
|
|
@ -644,13 +644,13 @@ export default {
|
|
|
|
|
this.inventoryChange() // 三份清单自动切换
|
|
|
|
|
this.getDynamicData() // 工作动态信息获取
|
|
|
|
|
|
|
|
|
|
this.time2 = setInterval(() => { // 安全隐患列表
|
|
|
|
|
if (this.dynamicList.length >= this.dongtaiTotal) {
|
|
|
|
|
clearInterval(this.time2)
|
|
|
|
|
} else {
|
|
|
|
|
this.getDynamicData()
|
|
|
|
|
}
|
|
|
|
|
}, 500)
|
|
|
|
|
// this.time2 = setInterval(() => { // 安全隐患列表
|
|
|
|
|
// if (this.dynamicList.length >= this.dongtaiTotal) {
|
|
|
|
|
// clearInterval(this.time2)
|
|
|
|
|
// } else {
|
|
|
|
|
// this.getDynamicData()
|
|
|
|
|
// }
|
|
|
|
|
// }, 500)
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
// 工作动态信息获取
|
|
|
|
@ -1034,16 +1034,16 @@ export default {
|
|
|
|
|
this.currentPage = 1
|
|
|
|
|
this.pageSize = 10
|
|
|
|
|
let data = await dongtaiInfo(item.id)
|
|
|
|
|
console.log(data)
|
|
|
|
|
// console.log(data)
|
|
|
|
|
this.tableHeader= ['材料名称']
|
|
|
|
|
this.dialogTitle = data.data.materialsName
|
|
|
|
|
const fileName = data.data.materialsFileName.split(',')
|
|
|
|
|
const fileUrl = data.data.materialsFileUrl.split(',')
|
|
|
|
|
console.log(fileName)
|
|
|
|
|
if (fileUrl.length < 1 || fileName.length < 1) return
|
|
|
|
|
// console.log(fileName)
|
|
|
|
|
if (fileName.length > 0) {
|
|
|
|
|
// TODO:缺截取点前面的字符
|
|
|
|
|
fileName.forEach((item, index) => {
|
|
|
|
|
this.tableData.push({ '材料名称': item,'材料路径':fileUrl[index] })
|
|
|
|
|
this.tableData.push({ '材料名称': item.split('.')[0],'材料路径':fileUrl[index] })
|
|
|
|
|
})
|
|
|
|
|
this.networkPlatformDataTwo()
|
|
|
|
|
} else {
|
|
|
|
@ -1074,36 +1074,55 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
rowClick(row) {
|
|
|
|
|
console.log(row)
|
|
|
|
|
this.dialogDetails = true
|
|
|
|
|
// console.log(row)
|
|
|
|
|
// this.dialogDetails = true
|
|
|
|
|
console.log(process.env.VUE_APP_BASE_API2 + row['材料路径'])
|
|
|
|
|
this.fileExtension = row['材料路径'].substring(
|
|
|
|
|
row['材料路径'].lastIndexOf('.') + 1
|
|
|
|
|
)
|
|
|
|
|
console.log('fileExtension', this.fileExtension)
|
|
|
|
|
if (['png', 'jpg', 'jpeg'].includes(row.材料路径.substring(row.材料路径.lastIndexOf('.') + 1))) {
|
|
|
|
|
this.imgSrc = `${process.env.NODE_ENV === 'production' ? window._CONFIG['fileNginxUrl'] : '/fileApi'}${row['材料路径']}`
|
|
|
|
|
this.dialogImg = true
|
|
|
|
|
} else if (this.fileExtension === 'docx' || this.fileExtension === 'doc') {
|
|
|
|
|
if (this.fileExtension == "pdf") {
|
|
|
|
|
this.getNumPages(`${process.env.NODE_ENV === 'production' ? window._CONFIG['fileNginxUrl'] : process.env.VUE_APP_BASE_API2}${row['材料路径']}`)
|
|
|
|
|
} else if (
|
|
|
|
|
this.fileExtension === "docx" ||
|
|
|
|
|
this.fileExtension === "doc"
|
|
|
|
|
) {
|
|
|
|
|
axios({
|
|
|
|
|
method: 'get',
|
|
|
|
|
responseType: 'blob', // 设置响应文件格式
|
|
|
|
|
url: `${
|
|
|
|
|
process.env.NODE_ENV === 'production'
|
|
|
|
|
? window._CONFIG['fileNginxUrl']
|
|
|
|
|
: '/fileApi'
|
|
|
|
|
}${row['材料路径']}`
|
|
|
|
|
method: "get",
|
|
|
|
|
responseType: "blob", // 设置响应文件格式
|
|
|
|
|
url: process.env.VUE_APP_BASE_API2 + row['材料路径'],
|
|
|
|
|
}).then(({ data }) => {
|
|
|
|
|
console.log(data,'docx,doc')
|
|
|
|
|
if (data) {
|
|
|
|
|
this.dialogDetails = true
|
|
|
|
|
this.dialogDetails = true;
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
docx.renderAsync(data, this.$refs.file) // 渲染到页面预览
|
|
|
|
|
})
|
|
|
|
|
docx.renderAsync(data, this.$refs.fileDoc); // 渲染到页面预览
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
} else if (this.fileExtension === 'pdf') {
|
|
|
|
|
console.log('window._CONFIG[fileNginxUrl]',window._CONFIG['fileNginxUrl'])
|
|
|
|
|
this.getNumPages(`${process.env.NODE_ENV === 'production' ? window._CONFIG['fileNginxUrl'] : '/fileApi'}${row['材料路径']}`)
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
// if (['png', 'jpg', 'jpeg'].includes(row.材料路径.substring(row.材料路径.lastIndexOf('.') + 1))) {
|
|
|
|
|
// this.imgSrc = `${process.env.NODE_ENV === 'production' ? window._CONFIG['fileNginxUrl'] : '/fileApi'}${row['材料路径']}`
|
|
|
|
|
// this.dialogImg = true
|
|
|
|
|
// } else if (this.fileExtension === 'docx' || this.fileExtension === 'doc') {
|
|
|
|
|
// axios({
|
|
|
|
|
// method: 'get',
|
|
|
|
|
// responseType: 'blob', // 设置响应文件格式
|
|
|
|
|
// url: `${
|
|
|
|
|
// process.env.NODE_ENV === 'production'
|
|
|
|
|
// ? window._CONFIG['fileNginxUrl']
|
|
|
|
|
// : process.env.VUE_APP_BASE_API3
|
|
|
|
|
// }${row['材料路径']}`
|
|
|
|
|
// }).then(({ data }) => {
|
|
|
|
|
// if (data) {
|
|
|
|
|
// this.dialogDetails = true
|
|
|
|
|
// this.$nextTick(() => {
|
|
|
|
|
// docx.renderAsync(data, this.$refs.file) // 渲染到页面预览
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// } else if (this.fileExtension === 'pdf') {
|
|
|
|
|
// console.log('window._CONFIG[fileNginxUrl]',window._CONFIG['fileNginxUrl'])
|
|
|
|
|
// this.getNumPages(`${process.env.NODE_ENV === 'production' ? window._CONFIG['fileNginxUrl'] : '/fileApi'}${row['材料路径']}`)
|
|
|
|
|
// }
|
|
|
|
|
},
|
|
|
|
|
getNumPages(url) {
|
|
|
|
|
// console.log(url)
|
|
|
|
|