diff --git a/packages/ui/certd-client/src/components/cron-editor/index.vue b/packages/ui/certd-client/src/components/cron-editor/index.vue index aa6e26934..9b502a618 100644 --- a/packages/ui/certd-client/src/components/cron-editor/index.vue +++ b/packages/ui/certd-client/src/components/cron-editor/index.vue @@ -40,6 +40,7 @@ if (props.modelValue == null) { } const emit = defineEmits<{ "update:modelValue": any; + change: any; }>(); const errorMessage = ref(null); diff --git a/packages/ui/certd-client/src/components/plugins/cert/domains-verify-plan-editor/index.vue b/packages/ui/certd-client/src/components/plugins/cert/domains-verify-plan-editor/index.vue index c53c763a5..acdb82a7f 100644 --- a/packages/ui/certd-client/src/components/plugins/cert/domains-verify-plan-editor/index.vue +++ b/packages/ui/certd-client/src/components/plugins/cert/domains-verify-plan-editor/index.vue @@ -79,6 +79,7 @@ import CnameVerifyPlan from "./cname-verify-plan.vue"; import psl from "psl"; import { Form } from "ant-design-vue"; import { DomainsVerifyPlanInput } from "./type"; +import { CnameRecord } from "./api"; defineOptions({ name: "DomainsVerifyPlanEditor" }); diff --git a/packages/ui/certd-client/src/views/certd/access/access-selector/index.vue b/packages/ui/certd-client/src/views/certd/access/access-selector/index.vue index b33bdc535..ed634573d 100644 --- a/packages/ui/certd-client/src/views/certd/access/access-selector/index.vue +++ b/packages/ui/certd-client/src/views/certd/access/access-selector/index.vue @@ -108,6 +108,7 @@ export default defineComponent({ chooseForm.show = false; console.log("choose ok:", selectedId.value); refreshTarget(selectedId.value); + ctx.emit("change", selectedId.value); ctx.emit("update:modelValue", selectedId.value); } });