mirror of
https://github.com/certd/certd.git
synced 2026-06-23 18:57:31 +08:00
30 lines
714 B
Vue
30 lines
714 B
Vue
<template>
|
|
<fs-page>
|
|
<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 { useFs } from "@fast-crud/fast-crud";
|
|
import createCrudOptions from "./crud";
|
|
import { useMounted } from "/@/use/use-mounted";
|
|
|
|
defineOptions({
|
|
name: "SysProductActivationCode",
|
|
});
|
|
|
|
const { crudBinding, crudRef, crudExpose } = useFs({ createCrudOptions });
|
|
|
|
// 页面打开后获取列表数据
|
|
useMounted(async () => {
|
|
await crudExpose.doRefresh();
|
|
});
|
|
</script>
|
|
<style lang="less"></style>
|