|
|
@@ -578,6 +578,16 @@ onMounted(() => {
|
|
|
{{ formatDate(slotProps.data.createdAt) }}
|
|
|
</template>
|
|
|
</Column>
|
|
|
+ <Column field="activatedAt" header="激活时间" style="min-width: 180px">
|
|
|
+ <template #body="slotProps">
|
|
|
+ {{ formatDate(slotProps.data.activatedAt) }}
|
|
|
+ </template>
|
|
|
+ </Column>
|
|
|
+ <Column field="lastScanAt" header="最后扫描时间" style="min-width: 180px">
|
|
|
+ <template #body="slotProps">
|
|
|
+ {{ formatDate(slotProps.data.lastScanAt) }}
|
|
|
+ </template>
|
|
|
+ </Column>
|
|
|
<Column header="操作" style="min-width: 350px" :pt="{ columnHeaderContent: { class: 'justify-center' } }">
|
|
|
<template #body="slotProps">
|
|
|
<div class="flex gap-1 justify-center">
|