2023-01-29 15:26:45 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<fs-page>
|
2023-03-09 19:24:01 +00:00
|
|
|
|
<template #header>
|
|
|
|
|
|
<div class="title">
|
|
|
|
|
|
分发时复制Dict
|
|
|
|
|
|
<span class="sub">如果你想要表格里同一个字段的dict和form表单同一个字段的dict不一样,就需要分发时复制</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="more">
|
|
|
|
|
|
<a target="_blank" href="http://fast-crud.docmirror.cn/guide/advance/dict.html">文档</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
2023-01-29 15:26:45 +08:00
|
|
|
|
<fs-crud ref="crudRef" v-bind="crudBinding">
|
|
|
|
|
|
<template #actionbar-right>
|
2023-03-09 19:24:01 +00:00
|
|
|
|
<a-alert class="ml-1" type="warning" message="如果你想要表格里同一个字段的dict和form表单同一个字段的dict不一样,就需要分发时复制;----点击switch看效果----↓↓↓↓↓↓" />
|
2023-01-29 15:26:45 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</fs-crud>
|
|
|
|
|
|
</fs-page>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import { defineComponent, ref, onMounted } from "vue";
|
|
|
|
|
|
import { useCrud } from "@fast-crud/fast-crud";
|
|
|
|
|
|
import createCrudOptions from "./crud";
|
|
|
|
|
|
import { useExpose } from "@fast-crud/fast-crud";
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
|
|
name: "DictCloneable",
|
|
|
|
|
|
setup() {
|
|
|
|
|
|
// crud组件的ref
|
|
|
|
|
|
const crudRef = ref();
|
|
|
|
|
|
// crud 配置的ref
|
|
|
|
|
|
const crudBinding = ref();
|
|
|
|
|
|
// 暴露的方法
|
|
|
|
|
|
const { expose } = useExpose({ crudRef, crudBinding });
|
|
|
|
|
|
// 你的crud配置
|
|
|
|
|
|
const { crudOptions } = createCrudOptions({ expose });
|
|
|
|
|
|
// 初始化crud配置
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars,no-unused-vars
|
|
|
|
|
|
const { resetCrudOptions } = useCrud({ expose, crudOptions });
|
|
|
|
|
|
// 你可以调用此方法,重新初始化crud配置
|
|
|
|
|
|
// resetCrudOptions(options)
|
|
|
|
|
|
|
|
|
|
|
|
// 页面打开后获取列表数据
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
expose.doRefresh();
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
crudBinding,
|
|
|
|
|
|
crudRef
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
</script>
|