perf: 支持从阿里云商用证书订单中获取证书

This commit is contained in:
xiaojunnuo
2025-12-28 00:38:38 +08:00
parent b620038d98
commit 8872466968
4 changed files with 154 additions and 1 deletions
@@ -163,6 +163,7 @@ export function useCertPipelineCreator() {
data: [
{ value: "CertApply", label: "JS-ACME" },
{ value: "CertApplyLego", label: "Lego-ACME" },
{ value: "CertApplyAliyun", label: "Aliyun-Order" },
],
}),
form: {
@@ -174,6 +175,7 @@ export function useCertPipelineCreator() {
<ul>
<li>{t("certd.plugin.jsAcme")}</li>
<li>{t("certd.plugin.legoAcme")}</li>
<li>{t("certd.plugin.aliyunOrder")}</li>
</ul>
);
},
@@ -201,7 +203,7 @@ export function useCertPipelineCreator() {
component: {
name: "cron-editor",
vModel: "modelValue",
placeholder: "0 0 4 * * *",
placeholder: "0 0 4 * * * (表示凌晨4点执行)",
},
helper: t("certd.pipelineForm.triggerCronHelper"),
order: 100,