提交修改

dev
dsh 12 months ago
parent 5e2ed571d7
commit e8ccb41072

@ -376,6 +376,7 @@ export default {
if (index !== -1) {
this.fileData[index].childrenList.push({
name: item.fileName,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
@ -425,6 +426,7 @@ export default {
if (index !== -1) {
this.fileData[index].childrenList.push({
name: item.fileName,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,

@ -18,7 +18,7 @@
<el-table-column prop="name" label="文件名称">
<template slot-scope="scope">
<el-link style="margin-right: auto;" :href="`${baseUrl}${scope.row.url}`" :underline="false" target="_blank">
<span class="el-icon-document"> {{ getFileName(scope.row.name) }} </span>
<span class="el-icon-document"> {{ getFileName(scope.row.fileName) }} </span>
</el-link>
</template>
</el-table-column>
@ -116,6 +116,7 @@ export default {
if (response.code === 200) {
row.childrenList.push({
name: file.raw.name,
fileName:item.realName,
url: response.data.filePath,
state:response.data.fileState,
fileId:response.data.fileId,

Loading…
Cancel
Save