Files
iot-device-management-frontend/apps/web-antd/src/views/system/dept/index.vue

167 lines
4.2 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[]>([]);
/** 获取负责人名称 */
const getLeaderName = (userId: number) => {
return userList.value.find((user) => user.id === userId)?.nickname;
};
/** 刷新表格 */
function onRefresh() {
gridApi.query();
}
/** 切换树形展开/收缩状态 */
const isExpanded = ref(true);
function toggleExpand() {
isExpanded.value = !isExpanded.value;
gridApi.grid.setAllTreeExpand(isExpanded.value);
}
/** 创建部门 */
function onCreate() {
formModalApi.setData(null).open();
}
/** 添加下级部门 */
2025-04-22 22:10:33 +08:00
function onAppend(row: SystemDeptApi.Dept) {
formModalApi.setData({ parentId: row.id }).open();
}
/** 编辑部门 */
2025-04-22 22:10:33 +08:00
function onEdit(row: SystemDeptApi.Dept) {
formModalApi.setData(row).open();
}
/** 删除部门 */
2025-04-22 22:10:33 +08:00
async function onDelete(row: SystemDeptApi.Dept) {
2025-05-19 17:58:06 +08:00
message.loading({
content: $t('ui.actionMessage.deleting', [row.name]),
2025-05-19 17:58:06 +08:00
key: 'action_key_msg',
});
2025-05-19 17:58:06 +08:00
await deleteDept(row.id as number);
message.success({
content: $t('ui.actionMessage.deleteSuccess', [row.name]),
key: 'action_key_msg',
});
onRefresh();
}
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="[
{
label: $t('ui.actionTitle.create', ['菜单']),
type: 'primary',
icon: ACTION_ICON.ADD,
auth: ['system:dept:create'],
onClick: onCreate,
},
{
label: isExpanded ? '收缩' : '展开',
type: 'primary',
onClick: toggleExpand,
},
]"
/>
</template>
<template #actions="{ row }">
<TableAction
:actions="[
{
label: '新增下级',
type: 'link',
icon: ACTION_ICON.ADD,
auth: ['system:menu:create'],
onClick: onAppend.bind(null, row),
},
{
label: $t('common.edit'),
type: 'link',
icon: ACTION_ICON.EDIT,
auth: ['system:menu:update'],
onClick: onEdit.bind(null, row),
},
{
label: $t('common.delete'),
type: 'link',
danger: true,
icon: ACTION_ICON.DELETE,
auth: ['system:menu:delete'],
disabled: !!(row.children && row.children.length > 0),
popConfirm: {
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
confirm: onDelete.bind(null, row),
},
},
]"
/>
</template>
</Grid>
</Page>
</template>