|
|
|
@ -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,
|
|
|
|
|