|
@@ -77,7 +77,7 @@
|
|
|
filter: (value, record) => (record.name ?? '').includes(value),
|
|
filter: (value, record) => (record.name ?? '').includes(value),
|
|
|
slotName: 'name-filter',
|
|
slotName: 'name-filter',
|
|
|
icon: () => h(IconSearch)
|
|
icon: () => h(IconSearch)
|
|
|
- }">
|
|
|
|
|
|
|
+ }" :width="140">
|
|
|
<template #cell="{ record }">
|
|
<template #cell="{ record }">
|
|
|
<a-avatar :size="30">
|
|
<a-avatar :size="30">
|
|
|
<img :alt="record.name ?? ''"
|
|
<img :alt="record.name ?? ''"
|
|
@@ -86,7 +86,7 @@
|
|
|
{{ record.name }}
|
|
{{ record.name }}
|
|
|
</template>
|
|
</template>
|
|
|
</a-table-column>
|
|
</a-table-column>
|
|
|
- <a-table-column title="状态" ellipsis tooltip>
|
|
|
|
|
|
|
+ <a-table-column title="状态" ellipsis tooltip :width="230">
|
|
|
<template #cell="{ record }">
|
|
<template #cell="{ record }">
|
|
|
<div class="state">
|
|
<div class="state">
|
|
|
<div class="circle one" v-if="record.result.record_failed_reason === '自动确认有效'"></div>
|
|
<div class="circle one" v-if="record.result.record_failed_reason === '自动确认有效'"></div>
|
|
@@ -99,7 +99,7 @@
|
|
|
filter: (value, record) => (record.result.pass_tit ?? '').includes(value),
|
|
filter: (value, record) => (record.result.pass_tit ?? '').includes(value),
|
|
|
slotName: 'name-filter',
|
|
slotName: 'name-filter',
|
|
|
icon: () => h(IconSearch)
|
|
icon: () => h(IconSearch)
|
|
|
- }">
|
|
|
|
|
|
|
+ }" :width="220">
|
|
|
<template #cell="{ record }">
|
|
<template #cell="{ record }">
|
|
|
{{ record.result.pass_tit }}
|
|
{{ record.result.pass_tit }}
|
|
|
</template>
|
|
</template>
|
|
@@ -124,7 +124,7 @@
|
|
|
{{ stramptoTime(record.time) }}
|
|
{{ stramptoTime(record.time) }}
|
|
|
</template>
|
|
</template>
|
|
|
</a-table-column>
|
|
</a-table-column>
|
|
|
- <a-table-column title="操作" :width="170" ellipsis tooltip>
|
|
|
|
|
|
|
+ <a-table-column title="" :width="100" fixed="right">
|
|
|
<template #cell="{ record }">
|
|
<template #cell="{ record }">
|
|
|
<a-button @click="$router.push(`/admin/lepaoRecords/${record.id}`)">查看详情</a-button>
|
|
<a-button @click="$router.push(`/admin/lepaoRecords/${record.id}`)">查看详情</a-button>
|
|
|
</template>
|
|
</template>
|