|
@@ -68,19 +68,19 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<!-- 操作列 -->
|
|
<!-- 操作列 -->
|
|
|
- <!-- <template #action="{ record }">
|
|
|
|
|
|
|
+ <template #action="{ record }">
|
|
|
<a-space>
|
|
<a-space>
|
|
|
<a-button type="link" size="small" @click="handleViewDetail(record)"> 查看详情 </a-button>
|
|
<a-button type="link" size="small" @click="handleViewDetail(record)"> 查看详情 </a-button>
|
|
|
<a-button v-if="record.status === '2'" type="link" size="small" danger @click="handleRetry(record)">
|
|
<a-button v-if="record.status === '2'" type="link" size="small" danger @click="handleRetry(record)">
|
|
|
重新转换
|
|
重新转换
|
|
|
</a-button>
|
|
</a-button>
|
|
|
</a-space>
|
|
</a-space>
|
|
|
- </template> -->
|
|
|
|
|
|
|
+ </template>
|
|
|
</a-table>
|
|
</a-table>
|
|
|
</a-card>
|
|
</a-card>
|
|
|
|
|
|
|
|
<!-- 详情弹窗 -->
|
|
<!-- 详情弹窗 -->
|
|
|
- <a-modal v-model:open="detailVisible" title="转换日志详情" width="600px" :footer="null">
|
|
|
|
|
|
|
+ <a-modal v-model:visible="detailVisible" title="转换日志详情" width="600px" :footer="null">
|
|
|
<a-descriptions :column="1" bordered v-if="currentRecord">
|
|
<a-descriptions :column="1" bordered v-if="currentRecord">
|
|
|
<a-descriptions-item label="文件名称">
|
|
<a-descriptions-item label="文件名称">
|
|
|
{{ currentRecord.fileName }}
|
|
{{ currentRecord.fileName }}
|
|
@@ -193,14 +193,14 @@
|
|
|
width: 180,
|
|
width: 180,
|
|
|
slots: { customRender: 'createTime' }
|
|
slots: { customRender: 'createTime' }
|
|
|
},
|
|
},
|
|
|
- // {
|
|
|
|
|
- // title: '操作',
|
|
|
|
|
- // key: 'action',
|
|
|
|
|
- // width: 150,
|
|
|
|
|
- // align: 'center',
|
|
|
|
|
- // fixed: 'right',
|
|
|
|
|
- // slots: { customRender: 'action' }
|
|
|
|
|
- // }
|
|
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '操作',
|
|
|
|
|
+ key: 'action',
|
|
|
|
|
+ width: 150,
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ fixed: 'right',
|
|
|
|
|
+ slots: { customRender: 'action' }
|
|
|
|
|
+ }
|
|
|
]
|
|
]
|
|
|
|
|
|
|
|
// 获取列表数据
|
|
// 获取列表数据
|