|
@@ -90,7 +90,10 @@
|
|
<el-table-column prop="systemFiles" label="文件" align="center">
|
|
<el-table-column prop="systemFiles" label="文件" align="center">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.systemFiles && scope.row.systemFiles.length">
|
|
<div v-if="scope.row.systemFiles && scope.row.systemFiles.length">
|
|
- <myMenu :data="scope.row.systemFiles" :deleted="false" ></myMenu>
|
|
|
|
|
|
+ <div v-for="(file, index) in scope.row.systemFiles" :key="index" style="margin:0;display:flex;justify-content:space-around;">
|
|
|
|
+ <p style="margin:0;width:calc(100% - 40px);overflow: hidden;white-space: nowrap;text-overflow:ellipsis;cursor: pointer;">{{file.originalName}}</p>
|
|
|
|
+ <myMenu :data="file" :deleted="false" ></myMenu>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|