feat: 显示最后更新时间 (#10)

This commit is contained in:
秋云
2025-05-11 01:48:28 +08:00
committed by GitHub
parent 59ad689e0b
commit 7b036fe817

View File

@@ -291,6 +291,7 @@ const columns = [
{ title: '作者', dataIndex: 'author', width: 200 }, { title: '作者', dataIndex: 'author', width: 200 },
{ title: '版本', dataIndex: 'version', width: 100 }, { title: '版本', dataIndex: 'version', width: 100 },
{ title: '标签', dataIndex: 'tags', slotName: 'tags' }, { title: '标签', dataIndex: 'tags', slotName: 'tags' },
{ title: '最后更新', dataIndex: 'lastUpdated', width: 250 },
{ title: '操作', slotName: 'operations' }, { title: '操作', slotName: 'operations' },
]; ];
@@ -563,6 +564,7 @@ const showDetails = (script) => {
{ label: '描述', value: script.description || '无描述' }, { label: '描述', value: script.description || '无描述' },
{ label: '标签', value: script.tags }, { label: '标签', value: script.tags },
{ label: 'Hash', value: script.hash }, { label: 'Hash', value: script.hash },
{ label: '最后更新', value: script.lastUpdated || '未知' },
]; ];
drawerVisible.value = true; drawerVisible.value = true;
}; };