2023-01-29 15:26:45 +08:00
|
|
|
|
<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>
|
|
|
|
|
|
|
2023-03-16 19:24:01 +00:00
|
|
|
|
<script lang="ts">
|
2024-06-15 18:32:36 +00:00
|
|
|
|
import { defineComponent, onMounted } from "vue";
|
2023-01-29 15:26:45 +08:00
|
|
|
|
import createCrudOptions from "./crud";
|
2024-06-15 18:32:36 +00:00
|
|
|
|
import { useFs } from "@fast-crud/fast-crud";
|
2023-01-29 15:26:45 +08:00
|
|
|
|
import { message, Modal } from "ant-design-vue";
|
|
|
|
|
|
import { BatchDelete } from "./api";
|
2024-06-15 18:32:36 +00:00
|
|
|
|
|
2023-01-29 15:26:45 +08:00
|
|
|
|
export default defineComponent({
|
|
|
|
|
|
name: "FeatureSelection",
|
|
|
|
|
|
setup() {
|
2024-06-15 18:32:36 +00:00
|
|
|
|
const { crudBinding, crudRef, crudExpose, context } = useFs({ createCrudOptions });
|
|
|
|
|
|
const selectedRowKeys = context.selectedRowKeys;
|
2023-01-29 15:26:45 +08:00
|
|
|
|
// 页面打开后获取列表数据
|
|
|
|
|
|
onMounted(() => {
|
2023-03-16 19:24:01 +00:00
|
|
|
|
crudExpose.doRefresh();
|
2023-01-29 15:26:45 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const handleBatchDelete = () => {
|
|
|
|
|
|
if (selectedRowKeys.value?.length > 0) {
|
|
|
|
|
|
Modal.confirm({
|
|
|
|
|
|
title: "确认",
|
|
|
|
|
|
content: `确定要批量删除这${selectedRowKeys.value.length}条记录吗`,
|
|
|
|
|
|
async onOk() {
|
|
|
|
|
|
await BatchDelete(selectedRowKeys.value);
|
|
|
|
|
|
message.info("删除成功");
|
2023-03-16 19:24:01 +00:00
|
|
|
|
crudExpose.doRefresh();
|
2023-01-29 15:26:45 +08:00
|
|
|
|
selectedRowKeys.value = [];
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
message.error("请先勾选记录");
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
crudBinding,
|
|
|
|
|
|
crudRef,
|
|
|
|
|
|
handleBatchDelete
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
</script>
|