|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
* @Author: kery.chen
|
|
|
|
|
* @Description: 总体概览左侧
|
|
|
|
|
* @Date: 2021-11-30 11:08:50
|
|
|
|
|
* @LastEditTime: 2023-08-21 16:01:49
|
|
|
|
|
* @LastEditTime: 2023-08-22 17:20:02
|
|
|
|
|
* @FilePath : \\tcingiocpro\\src\\views\\privateOrder\\ecosphere\\components\\componentLeft.vue
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
|
|
|
@ -267,7 +267,7 @@
|
|
|
|
|
highlight-current-row
|
|
|
|
|
@row-click="rowClick"
|
|
|
|
|
>
|
|
|
|
|
<!-- <el-table-column
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="序号"
|
|
|
|
|
type="index"
|
|
|
|
|
:index="
|
|
|
|
@ -277,7 +277,7 @@
|
|
|
|
|
"
|
|
|
|
|
width="80"
|
|
|
|
|
align="center"
|
|
|
|
|
/> -->
|
|
|
|
|
/>
|
|
|
|
|
<template v-for="item in tableHeader">
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item !== '序号'"
|
|
|
|
@ -483,7 +483,7 @@
|
|
|
|
|
<script>
|
|
|
|
|
import vueSeamlessScroll from 'vue-seamless-scroll'
|
|
|
|
|
import ModuleTitle from '../../common/ModuleTitle.vue'
|
|
|
|
|
import { listEnterprise, listDomain, listWork, listDongtai, listPlatform } from '@/api/zongzhi/st.js'
|
|
|
|
|
import { listEnterprise, listDomain, listWork, listDongtai, listPlatform, dongtaiInfo } from '@/api/zongzhi/st.js'
|
|
|
|
|
import {
|
|
|
|
|
getBilibiliData,
|
|
|
|
|
getRedBookData,
|
|
|
|
@ -494,6 +494,7 @@ import {
|
|
|
|
|
getWeibo,
|
|
|
|
|
getTikTok
|
|
|
|
|
} from '@/api/common'
|
|
|
|
|
import { downloadTwo } from '@/utils/safesoft'
|
|
|
|
|
const docx = require('docx-preview')
|
|
|
|
|
import pdf from 'vue-pdf'
|
|
|
|
|
import axios from 'axios'
|
|
|
|
@ -610,7 +611,8 @@ export default {
|
|
|
|
|
zoologyWidth: '',
|
|
|
|
|
fileExtension: '',
|
|
|
|
|
pdfUrl: '',
|
|
|
|
|
numPages: ''
|
|
|
|
|
numPages: '',
|
|
|
|
|
dongtaiTotal:0
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
@ -632,24 +634,30 @@ export default {
|
|
|
|
|
destroyed() {
|
|
|
|
|
clearInterval(this.threeTimer)
|
|
|
|
|
clearInterval(this.zoologyTimer)
|
|
|
|
|
clearInterval(this.time2)
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
this.zoologyIconData = this.zoologyIconList.slice(0, 4)
|
|
|
|
|
this.getDynamicData() // 工作动态信息获取
|
|
|
|
|
|
|
|
|
|
// this.getZoologyData() // 网络平台信息获取
|
|
|
|
|
this.getZoologyChange() // 网络平台按钮切换
|
|
|
|
|
this.inventoryChange() // 三份清单自动切换
|
|
|
|
|
this.getDynamicData() // 工作动态信息获取
|
|
|
|
|
|
|
|
|
|
this.time2 = setInterval(() => { // 安全隐患列表
|
|
|
|
|
if (this.dynamicList.length >= this.dongtaiTotal) {
|
|
|
|
|
clearInterval(this.time2)
|
|
|
|
|
} else {
|
|
|
|
|
this.getDynamicData()
|
|
|
|
|
}
|
|
|
|
|
}, 500)
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
// 工作动态信息获取
|
|
|
|
|
getDynamicData() {
|
|
|
|
|
listDongtai().then(res => {
|
|
|
|
|
console.log(res)
|
|
|
|
|
this.dynamicList = res.data
|
|
|
|
|
// this.dtTotal = res.total
|
|
|
|
|
})
|
|
|
|
|
// const tableObject = require('./data.json')
|
|
|
|
|
// this.dynamicList = tableObject['工作动态']
|
|
|
|
|
async getDynamicData() {
|
|
|
|
|
let res = await listDongtai()
|
|
|
|
|
this.dongtaiTotal = res.data.count
|
|
|
|
|
this.dynamicList = [...this.dynamicList, ...res.data.list]
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 网络平台信息获取
|
|
|
|
@ -669,10 +677,10 @@ export default {
|
|
|
|
|
let res = await listPlatform({type:type});
|
|
|
|
|
res.rows.map((item)=>{
|
|
|
|
|
let obj = {}
|
|
|
|
|
obj['账号ID'] = item.name
|
|
|
|
|
obj['URL'] = item.dns
|
|
|
|
|
this.tableData.push(obj)
|
|
|
|
|
})
|
|
|
|
|
obj['账号ID'] = item.name
|
|
|
|
|
obj['URL'] = item.dns
|
|
|
|
|
this.tableData.push(obj)
|
|
|
|
|
})
|
|
|
|
|
// res['T_DATA_BILIBILI[]'].forEach((item) => {
|
|
|
|
|
// this.tableData.push({ 账号ID: item.account_id, URL: item.url })
|
|
|
|
|
// })
|
|
|
|
@ -1021,20 +1029,29 @@ export default {
|
|
|
|
|
this.currentPage = val
|
|
|
|
|
this.setCurrentPageData()
|
|
|
|
|
},
|
|
|
|
|
dynamicClick(item) {
|
|
|
|
|
console.log('数据', item)
|
|
|
|
|
this.tableHeader.push({ name: '材料路径', value: 'name' })
|
|
|
|
|
const fileName = item.materialsFileName.split(',')
|
|
|
|
|
const fileUrl = item.materialsFileUrl.split(',')
|
|
|
|
|
|
|
|
|
|
async dynamicClick(item) {
|
|
|
|
|
this.tableData = []
|
|
|
|
|
this.currentPage = 1
|
|
|
|
|
this.pageSize = 10
|
|
|
|
|
let data = await dongtaiInfo(item.id)
|
|
|
|
|
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 (fileName.length > 0) {
|
|
|
|
|
// TODO:缺截取点前面的字符
|
|
|
|
|
fileName.forEach((item, index) => {
|
|
|
|
|
this.tableData.push({ name: item, url: fileUrl[index] })
|
|
|
|
|
this.tableData.push({ '材料名称': item,'材料路径':fileUrl[index] })
|
|
|
|
|
})
|
|
|
|
|
this.networkPlatformDataTwo()
|
|
|
|
|
} else {
|
|
|
|
|
this.tableData = []
|
|
|
|
|
}
|
|
|
|
|
this.dynamicStatus = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// this.dialogTitle = val.dynamicName
|
|
|
|
|
// this.tableData = val.fileList
|
|
|
|
|
// this.tableHeader = []
|
|
|
|
@ -1049,39 +1066,47 @@ export default {
|
|
|
|
|
// this.setCurrentPageData()
|
|
|
|
|
// this.dynamicStatus = true
|
|
|
|
|
},
|
|
|
|
|
networkPlatformDataTwo() {
|
|
|
|
|
this.total = this.tableData.length
|
|
|
|
|
this.totalPage = Math.ceil(this.tableData.length / this.pageSize)
|
|
|
|
|
this.totalPage = this.totalPage === 0 ? 1 : this.totalPage
|
|
|
|
|
this.setCurrentPageData()
|
|
|
|
|
},
|
|
|
|
|
rowClick(row) {
|
|
|
|
|
console.log(row)
|
|
|
|
|
this.dialogDetails = true
|
|
|
|
|
// console.log(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') {
|
|
|
|
|
// axios({
|
|
|
|
|
// method: 'get',
|
|
|
|
|
// responseType: 'blob', // 设置响应文件格式
|
|
|
|
|
// url: `${
|
|
|
|
|
// process.env.NODE_ENV === 'production'
|
|
|
|
|
// ? window._CONFIG['fileNginxUrl']
|
|
|
|
|
// : '/fileApi'
|
|
|
|
|
// }${row['材料路径']}`
|
|
|
|
|
// }).then(({ data }) => {
|
|
|
|
|
// if (data) {
|
|
|
|
|
// this.dialogDetails = true
|
|
|
|
|
// this.$nextTick(() => {
|
|
|
|
|
// docx.renderAsync(data, this.$refs.file) // 渲染到页面预览
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// } else if (this.fileExtension === 'pdf') {
|
|
|
|
|
// this.getNumPages(`${process.env.NODE_ENV === 'production' ? window._CONFIG['fileNginxUrl'] : '/fileApi'}${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') {
|
|
|
|
|
axios({
|
|
|
|
|
method: 'get',
|
|
|
|
|
responseType: 'blob', // 设置响应文件格式
|
|
|
|
|
url: `${
|
|
|
|
|
process.env.NODE_ENV === 'production'
|
|
|
|
|
? window._CONFIG['fileNginxUrl']
|
|
|
|
|
: '/fileApi'
|
|
|
|
|
}${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)
|
|
|
|
|
axios({
|
|
|
|
|
method: 'GET',
|
|
|
|
|
url: url, // 后台接口
|
|
|
|
|