标准清单的下载回显,上传,导出

This commit is contained in:
shen_yan_pu
2021-07-20 11:17:33 +08:00
parent cabe3cf6c1
commit c3eb458337
3 changed files with 10 additions and 14 deletions
@@ -345,7 +345,8 @@ export default {
this.$router.push({
name: "ListOfStandardsAndRegulationsDetails",
query: {
id: item.id
id: item.id,
fileIds: item.fileIds
}
});
}
@@ -532,6 +532,7 @@ export default {
id: '',
sortKey: 1,
countryArea: '',
fileIds: '',
detailedListName: '',
energyKind: '',
type: '',
@@ -846,7 +847,6 @@ export default {
uploadBackSuccess (res, file, fileList) {
if (res.ok) {
this.fileInfoList = fileList
console.log(this.fileInfoList)
this.fileInfoList[this.fileInfoList.length - 1].id = res.data.id
this.$message.success('上传成功')
} else {
@@ -1186,8 +1186,7 @@ export default {
this.fileInfoList.map(item => {
relateFile.push(item.id)
})
sarAccessEO.relateFile = relateFile.join(',')
console.log(sarAccessEO.relateFile)
sarAccessEO.fileIds = relateFile.join(',')
}
if (!sarAccessEO.id) {
// 新增
@@ -1201,12 +1200,8 @@ export default {
this.$message.success('新增成功')
this.isNext = true
this.$router.push({
name: 'AccessStandardsAndRegulations',
query: {
relateFile: sarAccessEO.relateFile
}
name: 'AccessStandardsAndRegulations'
})
console.log(sarAccessEO)
}
}, e => {
})
@@ -1604,7 +1599,7 @@ export default {
// 请求上传的文件信息
getFileInfo () {
this.$http.get('att/attFile/getMultiFileInfos', {
fileIds: this.sarAccessEO.relateFile
fileIds: this.$route.query.fileIds
}, {
_this: this
}, res => {
@@ -21,7 +21,7 @@
<label class="transition-box-label">附件</label>
<div class="file-box" v-if="fileInfoList.length > 0">
<p v-for="item in fileInfoList"
:key="item.id">
:key="item.id"> {{ item.name }}
<i
title="下载"
@click="downloadFile(item.id)"
@@ -251,6 +251,7 @@
<script>
import { interfaceUrl } from "@/sysConfig";
import { exportFile } from '@/api/unqualProcess'
export default {
name: "AccessStandardDetails",
@@ -452,9 +453,8 @@ export default {
},
// 请求上传的文件信息
getFileInfo() {
console.log(this.sarAccessEO)
this.$http.get("att/attFile/getMultiFileInfos", {
fileIds: this.sarAccessEO.relateFile
fileIds: this.sarAccessEO.fileIds
}, {
_this: this
}, res => {
@@ -474,7 +474,7 @@ export default {
},
// 附件下载事件
fileDownLoad(attId) {
window.location.href = "/api/att/attFile/downloadFile?fileId=" + attId;
window.location.href = "/api/att/attFile/downloadFile?fileId=" + attId
},
// 点击查看
handlePreview(item) {