Commit 19eaa55c by wusiyi

feat: podus添加失败原因

parent 405daa77
...@@ -1042,6 +1042,16 @@ ...@@ -1042,6 +1042,16 @@
{{ row.finishTime?.replace('T', ' ') }} {{ row.finishTime?.replace('T', ' ') }}
</div> </div>
</template> </template>
<template #failTime="{ row }">
<div style="white-space: pre-line">
{{ row.failTime?.replace('T', ' ') }}
</div>
</template>
<template #failReason="{ row }">
<div style="white-space: pre-line">
{{ row.failReason }}
</div>
</template>
<template #operate="{ row }"> <template #operate="{ row }">
<div <div
v-if="status === 'BATCH_DOWNLOAD'" v-if="status === 'BATCH_DOWNLOAD'"
...@@ -2148,6 +2158,13 @@ const tableColumns = computed(() => { ...@@ -2148,6 +2158,13 @@ const tableColumns = computed(() => {
align: 'center', align: 'center',
}, },
{ {
label: '失败原因',
width: 250,
prop: 'failReason',
slot: 'failReason',
align: 'left',
},
{
label: '创建时间', label: '创建时间',
width: 250, width: 250,
prop: 'createTime', prop: 'createTime',
...@@ -2161,6 +2178,13 @@ const tableColumns = computed(() => { ...@@ -2161,6 +2178,13 @@ const tableColumns = computed(() => {
slot: 'finishTime', slot: 'finishTime',
align: 'center', align: 'center',
}, },
// {
// label: '失败时间',
// width: 250,
// prop: 'failTime',
// slot: 'failTime',
// align: 'center',
// },
{ {
label: '操作', label: '操作',
slot: 'operate', slot: 'operate',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment