complete backend

This commit is contained in:
yanghao05
2025-04-11 14:48:36 +08:00
parent 736991e3ea
commit 79972e963c
10 changed files with 131 additions and 21 deletions

View File

@@ -203,11 +203,10 @@ const formatDate = (date) => {
</template>
</Column>
<Column field="upload_time" header="时间信息">
<Column field="upload_time" header="上传时间">
<template #body="{ data }">
<div class="flex flex-col">
<span class="text-gray-500">更新: {{ formatDate(data.updated_at) }}</span>
<span class="text-gray-400">上传: {{ formatDate(data.created_at) }}</span>
<span class="text-gray-400"> {{ formatDate(data.upload_time) }}</span>
</div>
</template>
</Column>