From eaf68fa463f56771e5d64878a2f84fc2f584527c Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Tue, 8 Apr 2025 13:40:58 +0800 Subject: [PATCH 1/3] chore: --- docs/.vitepress/config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 919f4959..1e0a35c4 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -61,6 +61,7 @@ export default defineConfig({ nav: [ { text: "首页", link: "/" }, { text: "指南", link: "/guide/" }, + { text: "插件", link: "/deply/" }, { text: "商业版", link: "/comm/" }, { text: "Demo体验", link: "https://certd.handfree.work" } ], @@ -126,7 +127,7 @@ export default defineConfig({ ], "/deploy/":[ { - text: "部署任务", + text: "部署证书", items: [ { text: "部署到ESXi", link: "/deploy/ESXi/index.md" }, ] From efad8bac3cbab915cbe5e8f56aa5780750d22094 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Tue, 8 Apr 2025 13:53:54 +0800 Subject: [PATCH 2/3] chore: --- docs/.vitepress/config.ts | 5 +++-- docs/deploy/index.md | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 docs/deploy/index.md diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 1e0a35c4..faa6b780 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -61,7 +61,7 @@ export default defineConfig({ nav: [ { text: "首页", link: "/" }, { text: "指南", link: "/guide/" }, - { text: "插件", link: "/deply/" }, + { text: "插件", link: "/deploy/" }, { text: "商业版", link: "/comm/" }, { text: "Demo体验", link: "https://certd.handfree.work" } ], @@ -127,8 +127,9 @@ export default defineConfig({ ], "/deploy/":[ { - text: "部署证书", + text: "部署证书插件", items: [ + { text: "插件说明", link: "/deploy/index.md" }, { text: "部署到ESXi", link: "/deploy/ESXi/index.md" }, ] } diff --git a/docs/deploy/index.md b/docs/deploy/index.md new file mode 100644 index 00000000..2fe18e65 --- /dev/null +++ b/docs/deploy/index.md @@ -0,0 +1,4 @@ +# 部署插件说明 + +## 待完善 + From 2f1683b26acebbfb7d6e2d751435be04a4e7cab4 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Tue, 8 Apr 2025 19:54:25 +0800 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Deab=E6=8E=88?= =?UTF-8?q?=E6=9D=83=EF=BC=8C=E6=B2=A1=E6=9C=89email=E7=BB=91=E5=AE=9A?= =?UTF-8?q?=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/plugins/plugin-cert/src/access/eab-access.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/plugin-cert/src/access/eab-access.ts b/packages/plugins/plugin-cert/src/access/eab-access.ts index bbfc4b24..f5c7379f 100644 --- a/packages/plugins/plugin-cert/src/access/eab-access.ts +++ b/packages/plugins/plugin-cert/src/access/eab-access.ts @@ -33,7 +33,7 @@ export class EabAccess extends BaseAccess { component: { placeholder: "绑定一个邮箱", }, - rules: { type: "email", message: "请输入正确的邮箱" }, + rules: [{ type: "email", message: "请输入正确的邮箱" }], helper: "Google的EAB申请证书,更换邮箱会导致EAB失效,可以在此处绑定一个邮箱避免此问题", required: true, })