Files
aiot-platform-ui/apps/web-antd/src/views/system/dept/index.vue

171 lines
4.3 KiB
Vue
Raw Normal View History

<script lang="ts" setup>
2025-05-19 17:58:06 +08:00
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { SystemDeptApi } from '#/api/system/dept';
import type { SystemUserApi } from '#/api/system/user';
import { onMounted, ref } from 'vue';
2025-04-22 11:25:11 +08:00
import { Page, useVbenModal } from '@vben/common-ui';
2025-05-19 17:58:06 +08:00
import { message } from 'ant-design-vue';
2025-04-22 11:25:11 +08:00
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
2025-04-22 11:25:11 +08:00
import { deleteDept, getDeptList } from '#/api/system/dept';
import { getSimpleUserList } from '#/api/system/user';
2025-04-22 11:25:11 +08:00
import { $t } from '#/locales';
import { useGridColumns } from './data';
2025-04-22 11:25:11 +08:00
import Form from './modules/form.vue';
const [FormModal, formModalApi] = useVbenModal({
connectedComponent: Form,
destroyOnClose: true,
});
2025-04-22 22:10:33 +08:00
const userList = ref<SystemUserApi.User[]>([]);
/** 获取负责人名称 */
2025-05-20 11:23:02 +08:00
function getLeaderName(userId: number) {
return userList.value.find((user) => user.id === userId)?.nickname;
2025-05-20 11:23:02 +08:00
}
/** 刷新表格 */
function onRefresh() {
gridApi.query();
}
/** 切换树形展开/收缩状态 */
const isExpanded = ref(true);
function toggleExpand() {
isExpanded.value = !isExpanded.value;
gridApi.grid.setAllTreeExpand(isExpanded.value);
}
/** 创建部门 */
2025-05-20 11:23:02 +08:00
function handleCreate() {
formModalApi.setData(null).open();
}
/** 添加下级部门 */
2025-05-20 11:23:02 +08:00
function handleAppend(row: SystemDeptApi.Dept) {
formModalApi.setData({ parentId: row.id }).open();
}
/** 编辑部门 */
2025-05-20 11:23:02 +08:00
function handleEdit(row: SystemDeptApi.Dept) {
formModalApi.setData(row).open();
}
/** 删除部门 */
2025-05-20 11:23:02 +08:00
async function handleDelete(row: SystemDeptApi.Dept) {
const hideLoading = message.loading({
content: $t('ui.actionMessage.deleting', [row.name]),
2025-05-19 17:58:06 +08:00
key: 'action_key_msg',
});
2025-05-20 11:23:02 +08:00
try {
await deleteDept(row.id as number);
message.success({
content: $t('ui.actionMessage.deleteSuccess', [row.name]),
key: 'action_key_msg',
});
onRefresh();
} finally {
hideLoading();
}
}
const [Grid, gridApi] = useVbenVxeGrid({
gridOptions: {
2025-05-19 17:58:06 +08:00
columns: useGridColumns(getLeaderName),
height: 'auto',
keepSource: true,
pagerConfig: {
enabled: false,
},
proxyConfig: {
ajax: {
query: async (_params) => {
return await getDeptList();
},
},
},
rowConfig: {
keyField: 'id',
},
toolbarConfig: {
refresh: { code: 'query' },
},
treeConfig: {
parentField: 'parentId',
rowField: 'id',
transform: true,
expandAll: true,
reserve: true,
},
} as VxeTableGridOptions,
});
/** 初始化 */
onMounted(async () => {
userList.value = await getSimpleUserList();
});
</script>
<template>
<Page auto-content-height>
<FormModal @success="onRefresh" />
<Grid table-title="部门列表">
<template #toolbar-tools>
2025-05-19 17:58:06 +08:00
<TableAction
:actions="[
{
2025-06-06 14:35:02 +08:00
label: $t('ui.actionTitle.create', ['部门']),
2025-05-19 17:58:06 +08:00
type: 'primary',
icon: ACTION_ICON.ADD,
auth: ['system:dept:create'],
2025-05-20 11:23:02 +08:00
onClick: handleCreate,
2025-05-19 17:58:06 +08:00
},
{
label: isExpanded ? '收缩' : '展开',
type: 'primary',
onClick: toggleExpand,
},
]"
/>
</template>
<template #actions="{ row }">
<TableAction
:actions="[
{
label: '新增下级',
type: 'link',
icon: ACTION_ICON.ADD,
2025-06-06 14:35:02 +08:00
auth: ['system:dept:create'],
2025-05-20 11:23:02 +08:00
onClick: handleAppend.bind(null, row),
2025-05-19 17:58:06 +08:00
},
{
label: $t('common.edit'),
type: 'link',
icon: ACTION_ICON.EDIT,
2025-06-06 14:35:02 +08:00
auth: ['system:dept:update'],
2025-05-20 11:23:02 +08:00
onClick: handleEdit.bind(null, row),
2025-05-19 17:58:06 +08:00
},
{
label: $t('common.delete'),
type: 'link',
danger: true,
icon: ACTION_ICON.DELETE,
2025-06-06 14:35:02 +08:00
auth: ['system:dept:delete'],
2025-05-19 17:58:06 +08:00
disabled: !!(row.children && row.children.length > 0),
popConfirm: {
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
2025-05-20 11:23:02 +08:00
confirm: handleDelete.bind(null, row),
2025-05-19 17:58:06 +08:00
},
},
]"
/>
</template>
</Grid>
</Page>
</template>