From ffbf463e72ed76940d0def8657eb4d0d5ca98160 Mon Sep 17 00:00:00 2001 From: tbphp Date: Wed, 9 Jul 2025 11:06:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B0=83=E6=95=B4=E9=A1=B5=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/keys/KeyTable.vue | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/web/src/components/keys/KeyTable.vue b/web/src/components/keys/KeyTable.vue index df23c4e..a0b9410 100644 --- a/web/src/components/keys/KeyTable.vue +++ b/web/src/components/keys/KeyTable.vue @@ -42,7 +42,7 @@ const loading = ref(false); const searchText = ref(""); const statusFilter = ref<"all" | "active" | "invalid">("all"); const currentPage = ref(1); -const pageSize = ref(9); +const pageSize = ref(15); const total = ref(0); const totalPages = ref(0); const dialog = useDialog(); @@ -56,14 +56,14 @@ const statusOptions = [ // 更多操作下拉菜单选项 const moreOptions = [ - { label: "复制所有 Key", key: "copyAll" }, - { label: "复制有效 Key", key: "copyValid" }, - { label: "复制无效 Key", key: "copyInvalid" }, + { label: "导出所有密钥", key: "copyAll" }, + { label: "导出有效密钥", key: "copyValid" }, + { label: "导出无效密钥", key: "copyInvalid" }, { type: "divider" }, - { label: "恢复所有无效 Key", key: "restoreAll" }, - { label: "验证所有 Key", key: "validateAll" }, + { label: "恢复所有无效密钥", key: "restoreAll" }, + { label: "清空所有无效密钥", key: "clearInvalid", props: { style: { color: "#d03050" } } }, { type: "divider" }, - { label: "清空所有无效 Key", key: "clearInvalid", props: { style: { color: "#d03050" } } }, + { label: "验证所有密钥", key: "validateAll" }, ]; let testingMsg: any = null; @@ -559,10 +559,10 @@ function resetPage() {