mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-16 08:48:17 +08:00
- 升级 Vue、Vue Router、Element Plus、Vite、UnoCSS、Sass、vue-tsc、oxlint 等前端核心依赖 - 适配依赖升级后的类型检查、键盘事件和 Sass 命名空间写法 - 登录记住功能仅保存用户名和 rememberMe,不再保存密码 - 移除模板中的 scope.row 类型断言,改由处理函数使用 Partial<VO> 承接
382 lines
13 KiB
Vue
382 lines
13 KiB
Vue
<template>
|
|
<div class="p-2 app-container system-dept-page">
|
|
<div class="search-wrap">
|
|
<el-card shadow="hover" class="search-panel" :class="{ 'is-collapsed': !showSearch }">
|
|
<template #header>
|
|
<div class="panel-heading search-panel-toggle" @click.stop="showSearch = !showSearch">
|
|
<div>
|
|
<span class="panel-kicker">Search Filters</span>
|
|
<h3>筛选条件</h3>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true" class="query-form">
|
|
<el-form-item label="部门名称" prop="deptName">
|
|
<el-input
|
|
v-model="queryParams.deptName"
|
|
placeholder="请输入部门名称"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="类别编码" prop="deptCategory">
|
|
<el-input
|
|
v-model="queryParams.deptCategory"
|
|
placeholder="请输入类别编码"
|
|
clearable
|
|
style="width: 240px"
|
|
@keyup.enter="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="状态" prop="status">
|
|
<el-select v-model="queryParams.status" placeholder="部门状态" clearable>
|
|
<el-option v-for="dict in sys_normal_disable" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-card>
|
|
</div>
|
|
|
|
<el-card shadow="hover" class="table-panel">
|
|
<template #header>
|
|
<div class="toolbar-shell">
|
|
<div class="table-heading">
|
|
<span class="panel-kicker">Department Dataset</span>
|
|
<h3>部门列表</h3>
|
|
<p>支持树形层级维护、负责人绑定和部门状态管理。</p>
|
|
</div>
|
|
<div class="toolbar-actions">
|
|
<el-button v-hasPermi="['system:dept:add']" type="primary" plain icon="Plus" @click="handleAdd()">
|
|
新增
|
|
</el-button>
|
|
<el-button type="info" plain icon="Sort" @click="handleToggleExpandAll">展开/折叠</el-button>
|
|
<right-toolbar v-model:show-search="showSearch" :search="false" @query-table="getList"></right-toolbar>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<el-table
|
|
ref="deptTableRef"
|
|
v-loading="loading"
|
|
class="data-table"
|
|
:data="deptList"
|
|
row-key="deptId"
|
|
border
|
|
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
|
|
:default-expand-all="isExpandAll"
|
|
>
|
|
<el-table-column prop="deptName" label="部门名称" width="260"></el-table-column>
|
|
<el-table-column prop="deptCategory" align="center" label="类别编码" width="200"></el-table-column>
|
|
<el-table-column prop="orderNum" align="center" label="排序" width="200"></el-table-column>
|
|
<el-table-column prop="status" align="center" label="状态" width="100">
|
|
<template #default="scope">
|
|
<dict-tag :options="sys_normal_disable" :value="scope.row.status" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="200">
|
|
<template #default="scope">
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column fixed="right" align="center" label="操作">
|
|
<template #default="scope">
|
|
<el-tooltip content="修改" placement="top">
|
|
<el-button
|
|
v-hasPermi="['system:dept:edit']"
|
|
link
|
|
type="primary"
|
|
icon="Edit"
|
|
@click="handleUpdate(scope.row)"
|
|
/>
|
|
</el-tooltip>
|
|
<el-tooltip content="新增" placement="top">
|
|
<el-button
|
|
v-hasPermi="['system:dept:add']"
|
|
link
|
|
type="primary"
|
|
icon="Plus"
|
|
@click="handleAdd(scope.row)"
|
|
/>
|
|
</el-tooltip>
|
|
<el-tooltip content="删除" placement="top">
|
|
<el-button
|
|
v-hasPermi="['system:dept:remove']"
|
|
link
|
|
type="primary"
|
|
icon="Delete"
|
|
@click="handleDelete(scope.row)"
|
|
/>
|
|
</el-tooltip>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-card>
|
|
|
|
<el-dialog v-model="dialog.visible" :title="dialog.title" destroy-on-close append-to-body width="600px">
|
|
<el-form ref="deptFormRef" :model="form" :rules="rules" label-width="80px">
|
|
<el-row>
|
|
<el-col v-if="form.parentId !== 0" :span="24">
|
|
<el-form-item label="上级部门" prop="parentId">
|
|
<el-tree-select
|
|
v-model="form.parentId"
|
|
:data="deptOptions"
|
|
:props="{ value: 'deptId', label: 'deptName', children: 'children' } as any"
|
|
value-key="deptId"
|
|
placeholder="选择上级部门"
|
|
check-strictly
|
|
/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="部门名称" prop="deptName">
|
|
<el-input v-model="form.deptName" placeholder="请输入部门名称" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="类别编码" prop="deptCategory">
|
|
<el-input v-model="form.deptCategory" placeholder="请输入类别编码" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="显示排序" prop="orderNum">
|
|
<el-input-number v-model="form.orderNum" controls-position="right" :min="0" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="负责人" prop="leader">
|
|
<el-select v-model="form.leader" placeholder="请选择负责人">
|
|
<el-option
|
|
v-for="item in deptUserList"
|
|
:key="item.userId"
|
|
:label="item.userName"
|
|
:value="item.userId"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="联系电话" prop="phone">
|
|
<el-input v-model="form.phone" placeholder="请输入联系电话" maxlength="11" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="邮箱" prop="email">
|
|
<el-input v-model="form.email" placeholder="请输入邮箱" maxlength="50" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="部门状态">
|
|
<el-radio-group v-model="form.status">
|
|
<el-radio v-for="dict in sys_normal_disable" :key="dict.value" :value="dict.value">
|
|
{{ dict.label }}
|
|
</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<template #footer>
|
|
<div class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup name="Dept" lang="ts">
|
|
import { listDept, getDept, delDept, addDept, updateDept, listDeptExcludeChild } from '@/api/system/dept';
|
|
import { DeptForm, DeptQuery, DeptVO } from '@/api/system/dept/types';
|
|
import { listUserByDeptId } from '@/api/system/user';
|
|
import { UserVO } from '@/api/system/user/types';
|
|
import { useLoading } from '@/hooks/async/useLoading';
|
|
import { useDialogState } from '@/hooks/dialog/useDialogState';
|
|
import { useSearchReset } from '@/hooks/form/useSearchReset';
|
|
import { useSearchToggle } from '@/hooks/form/useSearchToggle';
|
|
import { useTreeTableExpand } from '@/hooks/tree/useTreeTableExpand';
|
|
import modal from '@/plugins/modal';
|
|
import { useDict } from '@/utils/dict';
|
|
import { handleTree, parseTime } from '@/utils/ruoyi';
|
|
|
|
interface DeptOptionsType {
|
|
deptId: number | string;
|
|
deptName: string;
|
|
children: DeptOptionsType[];
|
|
}
|
|
|
|
const { sys_normal_disable } = toRefs<any>(useDict('sys_normal_disable'));
|
|
|
|
const deptList = ref<DeptVO[]>([]);
|
|
const { loading, withLoading } = useLoading(true);
|
|
const { showSearch } = useSearchToggle();
|
|
const deptOptions = ref<DeptOptionsType[]>([]);
|
|
const deptUserList = ref<UserVO[]>([]);
|
|
|
|
const deptTableRef = ref<ElTableInstance>();
|
|
const queryFormRef = ref<ElFormInstance>();
|
|
const deptFormRef = ref<ElFormInstance>();
|
|
const { isExpandAll, handleToggleExpandAll } = useTreeTableExpand<DeptVO>({
|
|
tableRef: deptTableRef,
|
|
data: deptList
|
|
});
|
|
|
|
const initFormData: DeptForm = {
|
|
deptId: undefined,
|
|
parentId: undefined,
|
|
deptName: undefined,
|
|
deptCategory: undefined,
|
|
orderNum: 0,
|
|
leader: undefined,
|
|
phone: undefined,
|
|
email: undefined,
|
|
status: '0'
|
|
};
|
|
const initData: PageData<DeptForm, DeptQuery> = {
|
|
form: { ...initFormData },
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
deptName: undefined,
|
|
deptCategory: undefined,
|
|
status: undefined
|
|
},
|
|
rules: {
|
|
parentId: [{ required: true, message: '上级部门不能为空', trigger: 'blur' }],
|
|
deptName: [{ required: true, message: '部门名称不能为空', trigger: 'blur' }],
|
|
orderNum: [{ required: true, message: '显示排序不能为空', trigger: 'blur' }],
|
|
email: [
|
|
{
|
|
type: 'email',
|
|
message: '请输入正确的邮箱地址',
|
|
trigger: ['blur', 'change']
|
|
}
|
|
],
|
|
phone: [
|
|
{
|
|
pattern: /^1[3456789][0-9]\d{8}$/,
|
|
message: '请输入正确的手机号码',
|
|
trigger: 'blur'
|
|
}
|
|
]
|
|
}
|
|
};
|
|
const data = reactive<PageData<DeptForm, DeptQuery>>(initData);
|
|
|
|
const { queryParams, form, rules } = toRefs<PageData<DeptForm, DeptQuery>>(data);
|
|
const { dialog, openDialog, closeDialog, setTitle } = useDialogState();
|
|
|
|
/** 查询菜单列表 */
|
|
const getList = async () => {
|
|
await withLoading(async () => {
|
|
const res = await listDept(queryParams.value);
|
|
const data = handleTree<DeptVO>(res.data, 'deptId');
|
|
if (data) {
|
|
deptList.value = data;
|
|
}
|
|
});
|
|
};
|
|
|
|
/** 查询当前部门的所有用户 */
|
|
async function getDeptAllUser(deptId: any) {
|
|
if (deptId !== null && deptId !== '' && deptId !== undefined) {
|
|
const res = await listUserByDeptId(deptId);
|
|
deptUserList.value = res.data;
|
|
}
|
|
}
|
|
|
|
/** 取消按钮 */
|
|
const cancel = () => {
|
|
reset();
|
|
closeDialog();
|
|
};
|
|
/** 表单重置 */
|
|
const reset = () => {
|
|
form.value = { ...initFormData };
|
|
deptFormRef.value?.resetFields();
|
|
};
|
|
|
|
/** 搜索按钮操作 */
|
|
const handleQuery = () => {
|
|
getList();
|
|
};
|
|
const { resetQuery } = useSearchReset({
|
|
queryFormRef,
|
|
queryParams,
|
|
afterReset: () => {
|
|
handleQuery();
|
|
}
|
|
});
|
|
|
|
/** 新增按钮操作 */
|
|
const handleAdd = async (row?: Partial<DeptVO>) => {
|
|
reset();
|
|
const res = await listDept();
|
|
const data = handleTree<DeptOptionsType>(res.data, 'deptId');
|
|
if (data) {
|
|
deptOptions.value = data;
|
|
if (row && row.deptId) {
|
|
form.value.parentId = row?.deptId;
|
|
}
|
|
setTitle('添加部门');
|
|
openDialog();
|
|
}
|
|
};
|
|
|
|
/** 修改按钮操作 */
|
|
const handleUpdate = async (row: Partial<DeptVO>) => {
|
|
reset();
|
|
//查询当前部门所有用户
|
|
getDeptAllUser(row.deptId);
|
|
const res = await getDept(row.deptId);
|
|
form.value = res.data;
|
|
const response = await listDeptExcludeChild(row.deptId);
|
|
const data = handleTree<DeptOptionsType>(response.data, 'deptId');
|
|
if (data) {
|
|
deptOptions.value = data;
|
|
if (data.length === 0) {
|
|
const noResultsOptions: DeptOptionsType = {
|
|
deptId: res.data.parentId,
|
|
deptName: res.data.parentName,
|
|
children: []
|
|
};
|
|
deptOptions.value.push(noResultsOptions);
|
|
}
|
|
}
|
|
setTitle('修改部门');
|
|
openDialog();
|
|
};
|
|
/** 提交按钮 */
|
|
const submitForm = () => {
|
|
deptFormRef.value?.validate(async (valid: boolean) => {
|
|
if (valid) {
|
|
form.value.deptId ? await updateDept(form.value) : await addDept(form.value);
|
|
modal.msgSuccess('操作成功');
|
|
closeDialog();
|
|
await getList();
|
|
}
|
|
});
|
|
};
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (row: Partial<DeptVO>) => {
|
|
await modal.confirm('是否确认删除名称为"' + row.deptName + '"的数据项?');
|
|
await delDept(row.deptId);
|
|
await getList();
|
|
modal.msgSuccess('删除成功');
|
|
};
|
|
|
|
onMounted(() => {
|
|
getList();
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@use '@/assets/styles/components/page-shell' as pageShell;
|
|
|
|
@include pageShell.table-crud-page;
|
|
</style>
|