fix(cert-plugin): 修复DNS提供商授权无法回显的bug

This commit is contained in:
xiaojunnuo
2026-06-09 23:08:45 +08:00
parent 3e9953a74a
commit 016ae865b1
4 changed files with 15 additions and 7 deletions
@@ -172,9 +172,9 @@ function useStepForm() {
const stepTypeSelected = (item: any) => {
if (item.needPlus && !settingStore.isPlus) {
message.warn("此插件需要开通专业版才能使用");
message.warn("此插件需要开通Certd专业版才能使用");
mitter.emit("openVipModal");
throw new Error("此插件需要开通专业版才能使用");
throw new Error("此插件需要开通Certd专业版才能使用");
}
currentStep.value.type = item.name;
currentStep.value.title = item.title;