From 7b036fe8171cc96e41afd3a617ecbbe305e05cb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=8B=E4=BA=91?= Date: Sun, 11 May 2025 01:48:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=98=BE=E7=A4=BA=E6=9C=80=E5=90=8E?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=97=B6=E9=97=B4=20(#10)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App.vue b/src/App.vue index 98f6154..8b63ed2 100644 --- a/src/App.vue +++ b/src/App.vue @@ -291,6 +291,7 @@ const columns = [ { title: '作者', dataIndex: 'author', width: 200 }, { title: '版本', dataIndex: 'version', width: 100 }, { title: '标签', dataIndex: 'tags', slotName: 'tags' }, + { title: '最后更新', dataIndex: 'lastUpdated', width: 250 }, { title: '操作', slotName: 'operations' }, ]; @@ -563,6 +564,7 @@ const showDetails = (script) => { { label: '描述', value: script.description || '无描述' }, { label: '标签', value: script.tags }, { label: 'Hash', value: script.hash }, + { label: '最后更新', value: script.lastUpdated || '未知' }, ]; drawerVisible.value = true; };