|
|
@@ -55,19 +55,19 @@
|
|
|
<div class="batch-table">
|
|
|
<BasicTable ref="basicTableRef" :tableData="tableData" :tableConfig="tableConfig"
|
|
|
@update:pageSize="handleSizeChange" @update:pageNumber="handleCurrentChange">
|
|
|
- <template #actionContent="scope">
|
|
|
+ <!-- <template #actionContent="scope">
|
|
|
<div class="file-item" v-for="file in scope.row.fileUrlList" :key="file.fileId">
|
|
|
<span class="file-item--name">{{ file.fileName }}</span>
|
|
|
<div class="file-item--footer">
|
|
|
<el-button link type="primary" @click="previewOnline(file.fileUrl, file.fileType)"
|
|
|
>预览</el-button
|
|
|
>
|
|
|
- <!-- <el-button link type="primary" @click.stop="downloadFile(file.fileUrl, file.fileName)"
|
|
|
+ <el-button link type="primary" @click.stop="downloadFile(file.fileUrl, file.fileName)"
|
|
|
>下载</el-button
|
|
|
- > -->
|
|
|
+ >
|
|
|
</div>
|
|
|
</div>
|
|
|
- </template>
|
|
|
+ </template> -->
|
|
|
<template #action="scope">
|
|
|
<div class="action-container--div" style="justify-content: left">
|
|
|
<ActionButton text="编辑" v-if="scope.row.status === 1" @click="handleEdit(scope.row.id)" />
|