mirror of
https://github.com/certd/certd.git
synced 2026-05-18 06:17:31 +08:00
d10e80bf83
Update README.md
69 lines
2.1 KiB
Vue
69 lines
2.1 KiB
Vue
<template>
|
||
<fs-page>
|
||
<fs-crud ref="crudRef" v-bind="crudBinding">
|
||
<template #actionbar-right>
|
||
<span>示例说明:1、勾选记录,然后点击下方pagination左边的删除按钮进行批量删除。2、第一条记录配置为不可选</span>
|
||
</template>
|
||
<template #pagination-left>
|
||
<a-tooltip title="批量删除">
|
||
<fs-button icon="DeleteOutlined" @click="handleBatchDelete"></fs-button>
|
||
</a-tooltip>
|
||
</template>
|
||
</fs-crud>
|
||
</fs-page>
|
||
</template>
|
||
|
||
<script>
|
||
import { defineComponent, ref, onMounted } from "vue";
|
||
import createCrudOptions from "./crud";
|
||
import { useExpose, useCrud } from "@fast-crud/fast-crud";
|
||
import { message, Modal } from "ant-design-vue";
|
||
import { BatchDelete } from "./api";
|
||
export default defineComponent({
|
||
name: "FeatureSelection",
|
||
setup() {
|
||
// crud组件的ref
|
||
const crudRef = ref();
|
||
// crud 配置的ref
|
||
const crudBinding = ref();
|
||
// 暴露的方法
|
||
const { expose } = useExpose({ crudRef, crudBinding });
|
||
// 你的crud配置
|
||
const { crudOptions, selectedRowKeys } = 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();
|
||
});
|
||
|
||
const handleBatchDelete = () => {
|
||
if (selectedRowKeys.value?.length > 0) {
|
||
Modal.confirm({
|
||
title: "确认",
|
||
content: `确定要批量删除这${selectedRowKeys.value.length}条记录吗`,
|
||
async onOk() {
|
||
await BatchDelete(selectedRowKeys.value);
|
||
message.info("删除成功");
|
||
expose.doRefresh();
|
||
selectedRowKeys.value = [];
|
||
}
|
||
});
|
||
} else {
|
||
message.error("请先勾选记录");
|
||
}
|
||
};
|
||
|
||
return {
|
||
crudBinding,
|
||
crudRef,
|
||
handleBatchDelete
|
||
};
|
||
}
|
||
});
|
||
</script>
|