Files
schoolNews/schoolNewsWeb/src/views/admin/manage/system/DeptManageView.vue

828 lines
21 KiB
Vue
Raw Normal View History

2025-10-08 14:11:54 +08:00
<template>
2025-10-28 19:04:35 +08:00
<AdminLayout
title="系统管理"
subtitle="管理用户、角色、权限、部门等系统信息"
>
<div class="dept-manage">
<div class="header">
<h2>部门管理</h2>
<el-button type="primary" @click="handleAdd">
<el-icon><Plus /></el-icon>
新增部门
</el-button>
</div>
2025-10-09 16:35:49 +08:00
2025-10-15 10:11:30 +08:00
<div class="tree-container">
<el-tree
ref="treeRef"
v-loading="loading"
:data="deptList"
:props="treeProps"
node-key="deptID"
:default-expand-all="true"
:expand-on-click-node="false"
:check-on-click-node="false"
draggable
:allow-drop="allowDrop"
@node-drop="handleNodeDrop"
class="dept-tree"
>
<template #default="{ data }">
<div class="custom-tree-node">
<div class="node-label">
<el-icon class="node-icon">
<OfficeBuilding />
</el-icon>
<span class="node-name">{{ data.name }}</span>
</div>
<div class="node-info">
<span class="info-item">ID: {{ data.deptID }}</span>
<span class="info-item" v-if="data.description">{{ data.description }}</span>
<span class="info-item" v-if="data.creatorName">创建人: {{ data.creatorName }}</span>
</div>
<div class="node-actions">
<el-button size="small" type="primary" @click.stop="handleAddChild(data)">
子部门
</el-button>
<el-button size="small" type="success" @click.stop="handleEdit(data)">
编辑
</el-button>
<el-button size="small" type="warning" @click.stop="handleBindRole(data)">
角色
</el-button>
<el-button size="small" type="danger" @click.stop="handleDelete(data)">
删除
</el-button>
</div>
</div>
2025-10-09 16:35:49 +08:00
</template>
2025-10-15 10:11:30 +08:00
</el-tree>
</div>
2025-10-09 16:35:49 +08:00
<!-- 新增/编辑对话框 -->
<el-dialog
v-model="dialogVisible"
:title="isEdit ? '编辑部门' : '新增部门'"
width="600px"
@close="resetForm"
>
<el-form
ref="formRef"
:model="formData"
:rules="formRules"
label-width="100px"
>
<el-form-item label="父部门" prop="parentID">
<el-cascader
v-model="formData.parentID"
:options="parentDeptOptions"
:props="cascaderProps"
placeholder="请选择父部门"
clearable
style="width: 100%"
/>
</el-form-item>
<el-form-item label="部门名称" prop="name">
<el-input
v-model="formData.name"
placeholder="请输入部门名称"
clearable
/>
</el-form-item>
<el-form-item label="部门描述" prop="description">
<el-input
v-model="formData.description"
type="textarea"
:rows="3"
placeholder="请输入部门描述"
/>
</el-form-item>
</el-form>
<template #footer>
<el-button @click="dialogVisible = false">取消</el-button>
<el-button
type="primary"
@click="handleSubmit"
:loading="submitting"
>
确定
</el-button>
</template>
</el-dialog>
<!-- 绑定角色对话框 -->
<el-dialog v-model="bindRoleDialogVisible" title="绑定角色" width="800px" @close="resetBindList">
<div class="role-binding-container">
<!-- 部门信息显示 -->
<div class="dept-info" v-if="currentDept">
<h4>部门信息{{ currentDept.name }}</h4>
<p>部门ID{{ currentDept.deptID }}</p>
</div>
<!-- 角色绑定状态表格 -->
<el-table :data="roleList" style="width: 100%" border stripe>
<el-table-column width="80" label="绑定状态">
<template #default="{ row }">
<el-tag
:type="isRoleSelected(row.roleID) ? 'success' : 'info'"
size="small"
>
{{ isRoleSelected(row.roleID) ? '已绑定' : '未绑定' }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="name" label="角色名称" min-width="150" />
<el-table-column prop="roleID" label="角色ID" min-width="120" />
<el-table-column prop="description" label="角色描述" min-width="200" show-overflow-tooltip />
<el-table-column label="操作" width="100">
<template #default="{ row }">
<el-button
:type="isRoleSelected(row.roleID) ? 'danger' : 'primary'"
size="small"
@click="toggleRoleSelection(row)"
>
{{ isRoleSelected(row.roleID) ? '解绑' : '绑定' }}
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 统计信息 -->
<div class="binding-stats">
<el-alert
:title="`已绑定 ${selectedRoles.length} 个角色,未绑定 ${roleList.length - selectedRoles.length} 个角色`"
type="info"
:closable="false"
show-icon
/>
</div>
</div>
<template #footer>
<el-button @click="bindRoleDialogVisible = false">取消</el-button>
<el-button type="primary" @click="saveRoleBinding" :loading="submitting">
保存
</el-button>
</template>
</el-dialog>
2025-10-08 14:11:54 +08:00
</div>
2025-10-28 19:04:35 +08:00
</AdminLayout>
2025-10-08 14:11:54 +08:00
</template>
<script setup lang="ts">
2025-10-09 16:35:49 +08:00
import { deptApi } from '@/apis/system/dept';
import { roleApi } from '@/apis/system/role';
import { SysDept, SysRole } from '@/types';
2025-10-28 19:04:35 +08:00
import { AdminLayout } from '@/views/admin';
defineOptions({
name: 'DeptManageView'
});
2025-10-09 16:35:49 +08:00
import { ref, onMounted, reactive, computed } from 'vue';
import { ElMessage, ElMessageBox, FormInstance, FormRules } from 'element-plus';
2025-10-15 10:11:30 +08:00
import { Plus, OfficeBuilding } from '@element-plus/icons-vue';
2025-10-09 16:35:49 +08:00
// 数据状态
const deptList = ref<SysDept[]>([]);
const loading = ref(false);
const submitting = ref(false);
2025-10-15 10:11:30 +08:00
const treeRef = ref();
2025-10-09 16:35:49 +08:00
// 角色绑定相关数据
const roleList = ref<SysRole[]>([]);
const selectedRoles = ref<string[]>([]);
const currentDept = ref<SysDept | null>(null);
const bindList = ref<{ roles: SysRole[] }>({
roles: []
});
// 对话框状态
const dialogVisible = ref(false);
const isEdit = ref(false);
const formRef = ref<FormInstance>();
const bindRoleDialogVisible = ref(false);
// 表单数据
const formData = reactive<SysDept>({
name: '',
description: '',
parentID: undefined
});
// 表单验证规则
const formRules: FormRules = {
name: [
{ required: true, message: '请输入部门名称', trigger: 'blur' },
{ min: 2, max: 50, message: '部门名称长度在 2 到 50 个字符', trigger: 'blur' }
],
description: [
{ max: 200, message: '部门描述不能超过 200 个字符', trigger: 'blur' }
]
};
// 级联选择器配置
const cascaderProps = {
2025-10-15 10:11:30 +08:00
value: 'value',
label: 'label',
2025-10-09 16:35:49 +08:00
children: 'children',
checkStrictly: true
};
2025-10-15 10:11:30 +08:00
// 树形组件配置
const treeProps = {
children: 'children',
label: 'name'
};
2025-10-09 16:35:49 +08:00
// 父部门选项
const parentDeptOptions = computed(() => {
return buildParentDeptOptions(deptList.value);
});
// 构建父部门选项
function buildParentDeptOptions(depts: SysDept[]): any[] {
2025-10-15 10:11:30 +08:00
const result: any[] = [];
function processNode(dept: SysDept): any {
const option = {
value: dept.deptID,
label: dept.name,
children: dept.children && dept.children.length > 0
? dept.children.map(processNode)
: undefined
};
return option;
}
depts.forEach(dept => {
result.push(processNode(dept));
});
return result;
2025-10-09 16:35:49 +08:00
}
// 加载部门列表
async function loadDeptList() {
try {
loading.value = true;
2025-10-16 10:31:32 +08:00
const result = await deptApi.getAllDepts();
const rawData = result.dataList || [];
2025-10-15 10:11:30 +08:00
console.log('原始部门数据:', rawData);
// 将扁平数据转换为树形结构
deptList.value = buildTree(rawData);
console.log('转换后的树形数据:', deptList.value);
2025-10-09 16:35:49 +08:00
} catch (error) {
console.error('加载部门列表失败:', error);
ElMessage.error('加载部门列表失败');
} finally {
loading.value = false;
}
}
2025-10-15 10:11:30 +08:00
// 将扁平数据转换为树形结构
function buildTree(flatData: SysDept[]): SysDept[] {
2025-10-15 17:54:40 +08:00
if (!flatData || flatData.length === 0) {
return [];
}
2025-10-15 10:11:30 +08:00
const tree: SysDept[] = [];
2025-10-15 17:54:40 +08:00
const map = new Map<string, SysDept>();
const maxDepth = flatData.length; // 最多遍历len层
2025-10-15 10:11:30 +08:00
2025-10-15 17:54:40 +08:00
// 初始化所有节点
2025-10-15 10:11:30 +08:00
flatData.forEach(item => {
if (item.deptID) {
2025-10-15 17:54:40 +08:00
map.set(item.deptID, { ...item, children: [] });
2025-10-15 10:11:30 +08:00
}
});
2025-10-15 17:54:40 +08:00
// 循环构建树结构最多遍历maxDepth次
for (let depth = 0; depth < maxDepth; depth++) {
let hasChanges = false;
flatData.forEach(item => {
if (!item.deptID) return;
const node = map.get(item.deptID);
if (!node) return;
// 如果节点已经在树中,跳过
if (isNodeInTree(node, tree)) {
return;
}
if (!item.parentID || item.parentID === '0' || item.parentID === '') {
// 根节点
if (!isNodeInTree(node, tree)) {
tree.push(node);
hasChanges = true;
2025-10-15 10:11:30 +08:00
}
} else {
2025-10-15 17:54:40 +08:00
// 查找父节点
const parent = map.get(item.parentID);
if (parent && isNodeInTree(parent, tree)) {
if (!parent.children) {
parent.children = [];
}
if (!parent.children.includes(node)) {
parent.children.push(node);
hasChanges = true;
}
}
2025-10-15 10:11:30 +08:00
}
2025-10-15 17:54:40 +08:00
});
// 如果没有变化,说明树构建完成
if (!hasChanges) {
break;
2025-10-15 10:11:30 +08:00
}
2025-10-15 17:54:40 +08:00
}
2025-10-15 10:11:30 +08:00
// 清理空的children数组
function cleanEmptyChildren(nodes: SysDept[]) {
nodes.forEach(node => {
if (node.children && node.children.length === 0) {
delete node.children;
} else if (node.children && node.children.length > 0) {
cleanEmptyChildren(node.children);
}
});
}
cleanEmptyChildren(tree);
return tree;
}
2025-10-15 17:54:40 +08:00
// 检查节点是否已经在树中
function isNodeInTree(node: SysDept, tree: SysDept[]): boolean {
for (const treeNode of tree) {
if (treeNode.deptID === node.deptID) {
return true;
}
if (treeNode.children && isNodeInTree(node, treeNode.children)) {
return true;
}
}
return false;
}
2025-10-09 16:35:49 +08:00
// 新增部门
function handleAdd() {
isEdit.value = false;
formData.parentID = undefined;
dialogVisible.value = true;
}
2025-10-08 14:11:54 +08:00
2025-10-09 16:35:49 +08:00
// 新增子部门
function handleAddChild(row: SysDept) {
isEdit.value = false;
formData.parentID = row.deptID;
dialogVisible.value = true;
}
// 编辑部门
function handleEdit(row: SysDept) {
isEdit.value = true;
Object.assign(formData, row);
dialogVisible.value = true;
}
// 删除部门
async function handleDelete(row: SysDept) {
try {
await ElMessageBox.confirm(
`确定要删除部门 "${row.name}" 吗?`,
'删除确认',
{
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}
);
await deptApi.deleteDept(row);
ElMessage.success('删除成功');
await loadDeptList();
} catch (error) {
if (error !== 'cancel') {
console.error('删除部门失败:', error);
ElMessage.error('删除部门失败');
}
}
}
// 提交表单
async function handleSubmit() {
if (!formRef.value) return;
try {
await formRef.value.validate();
submitting.value = true;
if (isEdit.value) {
await deptApi.updateDept(formData);
ElMessage.success('更新成功');
} else {
await deptApi.createDept(formData);
ElMessage.success('新增成功');
}
dialogVisible.value = false;
await loadDeptList();
} catch (error) {
if (error !== false) { // 表单验证失败时error为false
console.error('提交失败:', error);
ElMessage.error(isEdit.value ? '更新失败' : '新增失败');
}
} finally {
submitting.value = false;
}
}
// 重置表单
function resetForm() {
if (formRef.value) {
formRef.value.resetFields();
}
Object.assign(formData, {
name: '',
description: '',
parentID: undefined
});
}
// 查看绑定角色
async function handleBindRole(row: SysDept) {
currentDept.value = row;
try {
// 获取所有角色
2025-10-16 10:31:32 +08:00
const roleResult = await roleApi.getAllRoles();
roleList.value = roleResult.dataList || [];
2025-10-09 16:35:49 +08:00
// 获取已绑定的角色
const bindingResult = await deptApi.getDeptByRole(row);
2025-10-16 10:31:32 +08:00
bindList.value.roles = bindingResult.dataList || [];
2025-10-09 16:35:49 +08:00
// 设置已选中的角色
selectedRoles.value = bindList.value.roles.map(role => role.roleID).filter((id): id is string => !!id);
console.log('已绑定的角色:', bindList.value.roles);
console.log('所有角色:', roleList.value);
bindRoleDialogVisible.value = true;
} catch (error) {
console.error('获取角色绑定信息失败:', error);
ElMessage.error('获取角色绑定信息失败');
}
}
// 重置绑定列表
function resetBindList() {
bindList.value = {
roles: []
};
selectedRoles.value = [];
currentDept.value = null;
}
// 检查角色是否已选中
function isRoleSelected(roleID: string | undefined): boolean {
return roleID ? selectedRoles.value.includes(roleID) : false;
}
// 切换角色选择状态
function toggleRoleSelection(role: SysRole) {
if (!role.roleID) return;
const index = selectedRoles.value.indexOf(role.roleID);
if (index > -1) {
selectedRoles.value.splice(index, 1);
} else {
selectedRoles.value.push(role.roleID);
}
}
// 保存角色绑定
async function saveRoleBinding() {
if (!currentDept.value || !currentDept.value.deptID) {
ElMessage.error('部门信息不完整');
return;
}
try {
submitting.value = true;
// 获取当前已绑定的角色ID
const currentBoundRoles = (bindList.value.roles || []).map(role => role.roleID).filter((id): id is string => !!id);
// 找出需要绑定的角色(新增的)
const rolesToBind = selectedRoles.value.filter(roleID => !currentBoundRoles.includes(roleID));
// 找出需要解绑的角色(移除的)
const rolesToUnbind = currentBoundRoles.filter(roleID => !selectedRoles.value.includes(roleID));
// 构建需要绑定的角色对象数组
if (rolesToBind.length > 0) {
const rolesToBindObjects = rolesToBind.map(roleID => {
const role = roleList.value.find(r => r.roleID === roleID);
return role || { roleID: roleID };
});
const bindDept = {
dept: currentDept.value,
depts: [{deptID: currentDept.value.deptID}],
roles: rolesToBindObjects,
};
await deptApi.bindDeptRole(bindDept);
}
// 构建需要解绑的角色对象数组
if (rolesToUnbind.length > 0) {
const rolesToUnbindObjects = rolesToUnbind.map(roleID => {
const role = roleList.value.find(r => r.roleID === roleID);
return role || { roleID: roleID };
});
const unbindDept = {
dept: currentDept.value,
roles: rolesToUnbindObjects,
depts: [{deptID: currentDept.value.deptID}]
};
await deptApi.unbindDeptRole(unbindDept);
}
ElMessage.success('角色绑定保存成功');
bindRoleDialogVisible.value = false;
// 刷新部门列表
await loadDeptList();
} catch (error) {
console.error('保存角色绑定失败:', error);
ElMessage.error('保存角色绑定失败');
} finally {
submitting.value = false;
}
}
// 页面加载时获取部门列表
onMounted(() => {
loadDeptList();
});
2025-10-15 10:11:30 +08:00
// 节点拖拽逻辑
function allowDrop(draggingNode: any, dropNode: any) {
// 禁止拖拽到自己或子节点
return !isDescendant(draggingNode.data, dropNode.data);
}
// 判断是否是后代节点
function isDescendant(ancestor: SysDept, node: SysDept): boolean {
if (ancestor.deptID === node.deptID) return true;
if (node.children) {
return node.children.some(child => isDescendant(ancestor, child));
}
return false;
}
// 处理节点拖拽
async function handleNodeDrop(draggingNode: any, dropNode: any, dropType: string) {
try {
const dragData = draggingNode.data as SysDept;
const dropData = dropNode.data as SysDept;
// 更新被拖拽节点的父ID
if (dropType === 'inner') {
dragData.parentID = dropData.deptID;
} else {
dragData.parentID = dropData.parentID;
}
// 更新到后端
await deptApi.updateDept(dragData);
ElMessage.success('部门移动成功');
// 重新加载部门列表以确保数据一致性
await loadDeptList();
} catch (error) {
console.error('移动部门失败:', error);
ElMessage.error('移动部门失败');
// 重新加载部门列表以恢复原始状态
await loadDeptList();
}
}
2025-10-08 14:11:54 +08:00
</script>
<style scoped lang="scss">
2025-10-09 16:35:49 +08:00
.dept-manage {
2025-10-28 19:04:35 +08:00
background: #FFFFFF;
padding: 24px;
border-radius: 14px;
2025-10-09 16:35:49 +08:00
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
h2 {
margin: 0;
color: #303133;
font-size: 20px;
font-weight: 600;
}
}
2025-10-15 10:11:30 +08:00
.tree-container {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
padding: 20px;
.dept-tree {
.custom-tree-node {
display: flex;
align-items: center;
width: 100%;
padding: 8px 0;
border-bottom: 1px solid #f0f0f0;
.node-label {
display: flex;
align-items: center;
flex: 1;
min-width: 200px;
.node-icon {
margin-right: 8px;
color: #67C23A;
font-size: 16px;
}
.node-name {
font-size: 16px;
font-weight: 500;
color: #303133;
margin-right: 12px;
}
}
.node-info {
display: flex;
flex-wrap: wrap;
gap: 12px;
flex: 1;
margin: 0 20px;
.info-item {
font-size: 12px;
color: #909399;
background: #f4f4f5;
padding: 2px 6px;
border-radius: 4px;
white-space: nowrap;
}
}
.node-actions {
display: flex;
gap: 6px;
opacity: 0;
transition: opacity 0.3s;
.el-button {
padding: 4px 8px;
font-size: 12px;
}
}
&:hover {
background-color: #f5f7fa;
border-radius: 4px;
.node-actions {
opacity: 1;
}
}
}
}
// Element Plus Tree 组件样式覆盖
:deep(.el-tree-node__content) {
height: auto !important;
padding: 0 !important;
}
:deep(.el-tree-node__expand-icon) {
padding: 6px;
color: #67C23A;
}
:deep(.el-tree-node) {
white-space: normal;
}
:deep(.el-tree-node__children) {
padding-left: 24px !important;
}
}
2025-10-09 16:35:49 +08:00
.el-table {
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
border-radius: 4px;
}
}
// 对话框样式优化
:deep(.el-dialog) {
.el-dialog__header {
padding: 20px 20px 10px;
border-bottom: 1px solid #ebeef5;
.el-dialog__title {
font-size: 16px;
font-weight: 600;
color: #303133;
}
}
.el-dialog__body {
padding: 20px;
}
.el-dialog__footer {
padding: 10px 20px 20px;
border-top: 1px solid #ebeef5;
}
}
// 表单样式优化
:deep(.el-form) {
.el-form-item__label {
font-weight: 500;
color: #606266;
}
.el-input__wrapper {
box-shadow: 0 0 0 1px #dcdfe6 inset;
&:hover {
box-shadow: 0 0 0 1px #c0c4cc inset;
}
&.is-focus {
box-shadow: 0 0 0 1px #409eff inset;
}
}
.el-textarea__inner {
box-shadow: 0 0 0 1px #dcdfe6 inset;
&:hover {
box-shadow: 0 0 0 1px #c0c4cc inset;
}
&:focus {
box-shadow: 0 0 0 1px #409eff inset;
}
}
}
// 按钮样式优化
:deep(.el-button) {
&.is-link {
padding: 0;
margin-right: 12px;
&:last-child {
margin-right: 0;
}
}
}
2025-10-08 14:11:54 +08:00
2025-10-09 16:35:49 +08:00
// 角色绑定容器样式
.role-binding-container {
.dept-info {
background: #f5f7fa;
padding: 15px;
border-radius: 4px;
margin-bottom: 20px;
h4 {
margin: 0 0 8px 0;
color: #303133;
font-size: 16px;
}
p {
margin: 0;
color: #606266;
font-size: 14px;
}
}
.binding-stats {
margin-top: 20px;
}
}
2025-10-08 14:11:54 +08:00
</style>