141 lines
2.7 KiB
Vue
141 lines
2.7 KiB
Vue
|
<script lang="ts" setup>
|
||
|
import type {
|
||
|
OnActionClickParams,
|
||
|
VxeTableGridOptions,
|
||
|
} from '#/adapter/vxe-table';
|
||
|
import type { DeptApi } from '#/api';
|
||
|
|
||
|
import { Page, useVbenModal } from '@vben/common-ui';
|
||
|
import { Plus } from '@vben/icons';
|
||
|
|
||
|
import { Button, message } from 'ant-design-vue';
|
||
|
|
||
|
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
||
|
import { getAllDeptTree, removeDept } from '#/api';
|
||
|
import { $t } from '#/locales';
|
||
|
|
||
|
import { useColumns } from './data';
|
||
|
import Form from './modules/form.vue';
|
||
|
|
||
|
const [FormModal, formModalApi] = useVbenModal({
|
||
|
connectedComponent: Form,
|
||
|
destroyOnClose: true,
|
||
|
});
|
||
|
|
||
|
/**
|
||
|
* 编辑部门
|
||
|
* @param row
|
||
|
*/
|
||
|
function onEdit(row: DeptApi.Dept) {
|
||
|
formModalApi.setData(row).open();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 添加下级部门
|
||
|
* @param row
|
||
|
*/
|
||
|
function onAppend(row: DeptApi.Dept) {
|
||
|
formModalApi.setData({ pid: row.id }).open();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 创建新部门
|
||
|
*/
|
||
|
function onCreate() {
|
||
|
formModalApi.setData(null).open();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 删除部门
|
||
|
* @param row
|
||
|
*/
|
||
|
function onDelete(row: DeptApi.Dept) {
|
||
|
const hideLoading = message.loading({
|
||
|
content: $t('ui.actionMessage.deleting', [row.name]),
|
||
|
duration: 0,
|
||
|
key: 'action_process_msg',
|
||
|
});
|
||
|
removeDept(row.id)
|
||
|
.then(() => {
|
||
|
message.success({
|
||
|
content: $t('ui.actionMessage.deleteSuccess', [row.name]),
|
||
|
key: 'action_process_msg',
|
||
|
});
|
||
|
refreshGrid();
|
||
|
})
|
||
|
.catch(() => {
|
||
|
hideLoading();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 表格操作按钮的回调函数
|
||
|
*/
|
||
|
function onActionClick({ code, row }: OnActionClickParams<DeptApi.Dept>) {
|
||
|
switch (code) {
|
||
|
case 'append': {
|
||
|
onAppend(row);
|
||
|
break;
|
||
|
}
|
||
|
case 'delete': {
|
||
|
onDelete(row);
|
||
|
break;
|
||
|
}
|
||
|
case 'edit': {
|
||
|
onEdit(row);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const [Grid, gridApi] = useVbenVxeGrid({
|
||
|
gridEvents: {},
|
||
|
gridOptions: {
|
||
|
columns: useColumns(onActionClick),
|
||
|
height: 'auto',
|
||
|
keepSource: true,
|
||
|
pagerConfig: {
|
||
|
enabled: false,
|
||
|
},
|
||
|
proxyConfig: {
|
||
|
ajax: {
|
||
|
query: async (_params) => {
|
||
|
return await getAllDeptTree(1);
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
toolbarConfig: {
|
||
|
custom: true,
|
||
|
export: false,
|
||
|
refresh: { code: 'query' },
|
||
|
zoom: true,
|
||
|
},
|
||
|
treeConfig: {
|
||
|
parentField: 'pid',
|
||
|
rowField: 'id',
|
||
|
transform: false,
|
||
|
},
|
||
|
} as VxeTableGridOptions,
|
||
|
});
|
||
|
|
||
|
/**
|
||
|
* 刷新表格
|
||
|
*/
|
||
|
function refreshGrid() {
|
||
|
gridApi.query();
|
||
|
}
|
||
|
</script>
|
||
|
<template>
|
||
|
<Page auto-content-height>
|
||
|
<FormModal @success="refreshGrid" />
|
||
|
<Grid table-title="部门列表">
|
||
|
<template #toolbar-tools>
|
||
|
<Button type="primary" @click="onCreate">
|
||
|
<Plus class="size-5" />
|
||
|
{{ $t('ui.actionTitle.create', ['部门']) }}
|
||
|
</Button>
|
||
|
</template>
|
||
|
</Grid>
|
||
|
</Page>
|
||
|
</template>
|