Files
certd/packages/ui/certd-client/src/views/certd/cert/apply-template/index.vue
T
xiaojunnuo 28bbea85f0 chore: 1
2026-06-06 02:20:09 +08:00

31 lines
796 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<fs-page class="page-cert-apply-template">
<template #header>
<div class="title">
证书申请参数模版
<span class="sub">预设证书申请参数不包含域名和校验方式</span>
</div>
</template>
<fs-crud ref="crudRef" v-bind="crudBinding"> </fs-crud>
</fs-page>
</template>
<script lang="ts" setup>
import { onActivated, onMounted } from "vue";
import { useMounted } from "/@/use/use-mounted";
import { useFs } from "@fast-crud/fast-crud";
import createCrudOptions from "./crud";
defineOptions({
name: "CertApplyTemplate",
});
const { crudBinding, crudRef, crudExpose } = useFs({
createCrudOptions,
context: {
permission: { isProjectPermission: true },
},
});
useMounted(() => crudExpose.doRefresh());
</script>