This commit is contained in:
2026-06-19 10:49:19 +08:00
parent 866b8eeb63
commit ec97d6c2a1

View File

@@ -114,6 +114,12 @@
<el-table-column prop="remark" label="备注" min-width="120" show-overflow-tooltip />
<el-table-column prop="operation_ip" label="操作IP" width="130" show-overflow-tooltip>
<template #default="{ row }">
<span class="font-mono text-xs">{{ row.operation_ip || '-' }}</span>
</template>
</el-table-column>
<el-table-column prop="created_at" label="创建时间" width="170">
<template #default="{ row }">{{ formatDate(row.created_at) }}</template>
</el-table-column>