|
|
@@ -1,53 +1,80 @@
|
|
|
<script lang="ts" setup>
|
|
|
-import { useAccess } from '@vben/access';
|
|
|
+import type { OnActionClickParams, VxeTableGridOptions } from '#/adapter';
|
|
|
+
|
|
|
import { Page, useVbenModal } from '@vben/common-ui';
|
|
|
|
|
|
-import { Button, message, Modal } from 'ant-design-vue';
|
|
|
+import { Button, message } from 'ant-design-vue';
|
|
|
|
|
|
-import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
|
|
+import { useTableGridOptions, useVbenVxeGrid } from '#/adapter';
|
|
|
import { DepartmentApi } from '#/api';
|
|
|
-import { TableAction } from '#/components/table-action';
|
|
|
|
|
|
import FormEdit from './components/edit.vue';
|
|
|
-import { gridOptions, searchFormOptions } from './data.config';
|
|
|
-
|
|
|
-const { hasAccessByCodes } = useAccess();
|
|
|
-
|
|
|
-const [Grid, { reload }] = useVbenVxeGrid({
|
|
|
- formOptions: searchFormOptions,
|
|
|
- gridOptions,
|
|
|
-});
|
|
|
+import { useColumns, useSearchSchema } from './data.config';
|
|
|
|
|
|
const [FormEditModal, formEditApi] = useVbenModal({
|
|
|
connectedComponent: FormEdit,
|
|
|
});
|
|
|
+const handelSuccess = () => {
|
|
|
+ reload();
|
|
|
+};
|
|
|
|
|
|
-const handleDelete = (id: number) => {
|
|
|
- Modal.confirm({
|
|
|
- iconType: 'info',
|
|
|
- title: '删除提示',
|
|
|
- content: `确定要删除选择的记录吗?`,
|
|
|
- cancelText: `关闭`,
|
|
|
- onOk: async () => {
|
|
|
- await DepartmentApi.deleteDetail(id);
|
|
|
- message.success('数据删除成功');
|
|
|
- reload();
|
|
|
- },
|
|
|
- });
|
|
|
+const handleDelete = async (id: number) => {
|
|
|
+ await DepartmentApi.deleteDetail(id);
|
|
|
+ message.success('数据删除成功');
|
|
|
+ reload();
|
|
|
};
|
|
|
|
|
|
const handleEdit = (record: any, isUpdate: boolean) => {
|
|
|
- formEditApi.setData({
|
|
|
- isUpdate,
|
|
|
- baseData: { id: record.id },
|
|
|
- });
|
|
|
-
|
|
|
- formEditApi.open();
|
|
|
+ formEditApi
|
|
|
+ .setData({
|
|
|
+ isUpdate,
|
|
|
+ baseData: { id: record.id },
|
|
|
+ })
|
|
|
+ .open();
|
|
|
};
|
|
|
-
|
|
|
-const handelSuccess = () => {
|
|
|
- reload();
|
|
|
+const handleActionClick = async ({
|
|
|
+ code,
|
|
|
+ row,
|
|
|
+}: OnActionClickParams<DepartmentApi.RecordItem>) => {
|
|
|
+ switch (code) {
|
|
|
+ case 'delete': {
|
|
|
+ await handleDelete(row.id);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case 'edit': {
|
|
|
+ handleEdit(row, true);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
};
|
|
|
+
|
|
|
+const [Grid, { reload }] = useVbenVxeGrid(
|
|
|
+ useTableGridOptions({
|
|
|
+ formOptions: {
|
|
|
+ schema: useSearchSchema(),
|
|
|
+ },
|
|
|
+ gridOptions: {
|
|
|
+ pagerConfig: {
|
|
|
+ enabled: false,
|
|
|
+ },
|
|
|
+ treeConfig: {
|
|
|
+ rowField: 'id',
|
|
|
+ childrenField: 'children',
|
|
|
+ transform: false,
|
|
|
+ },
|
|
|
+ columns: useColumns(handleActionClick),
|
|
|
+ proxyConfig: {
|
|
|
+ ajax: {
|
|
|
+ query: async (_, formValues) => {
|
|
|
+ return await DepartmentApi.getTree({
|
|
|
+ ...formValues,
|
|
|
+ });
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ } as VxeTableGridOptions,
|
|
|
+ }),
|
|
|
+);
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
|
@@ -64,25 +91,6 @@ const handelSuccess = () => {
|
|
|
新增组织
|
|
|
</Button>
|
|
|
</template>
|
|
|
- <template #action="{ row }">
|
|
|
- <TableAction
|
|
|
- :actions="[
|
|
|
- {
|
|
|
- label: '编辑',
|
|
|
- type: 'text',
|
|
|
- disabled: !hasAccessByCodes(['department:edit']),
|
|
|
- onClick: handleEdit.bind(null, row, true),
|
|
|
- },
|
|
|
- {
|
|
|
- label: '删除',
|
|
|
- type: 'text',
|
|
|
- danger: true,
|
|
|
- disabled: !hasAccessByCodes(['department:delete']),
|
|
|
- onClick: handleDelete.bind(null, row.id),
|
|
|
- },
|
|
|
- ]"
|
|
|
- />
|
|
|
- </template>
|
|
|
</Grid>
|
|
|
</Page>
|
|
|
</template>
|