记录下具体代码写法而已,忽略
<el-table-column min-width="140" label="附件" header-align="center" align="center">
<template slot-scope="scope">
<template v-for="(item,index) in scope.row.fileViewList">
<el-link :key="index" type="primary" :href="item.url" target="_blank">{{ item.name }}</el-link>
<span v-if="index != scope.row.fileViewList.length-1" :key="index" style="color:#000">、</span>
</template>
</template>
</el-table-column>
效果如下: