|
|
@@ -0,0 +1,344 @@
|
|
|
+<template>
|
|
|
+ <div class="p-2">
|
|
|
+ <transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
|
|
+ <div v-show="showSearch" class="mb-[10px]">
|
|
|
+ <el-card shadow="hover">
|
|
|
+ <el-form ref="queryFormRef" :model="queryParams" :inline="true">
|
|
|
+ <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>
|
|
|
+ </transition>
|
|
|
+
|
|
|
+ <el-card shadow="hover">
|
|
|
+ <template #header>
|
|
|
+ <el-row :gutter="10">
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button v-hasPermi="['system:erpDept:add']" type="primary" plain icon="Plus" @click="handleAdd()">新增 </el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="info" plain icon="Sort" @click="handleToggleExpandAll">展开/折叠</el-button>
|
|
|
+ </el-col>
|
|
|
+ <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
|
|
|
+ </el-row>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <el-table
|
|
|
+ ref="deptTableRef"
|
|
|
+ v-loading="loading"
|
|
|
+ :data="erpDeptList"
|
|
|
+ row-key="deptId"
|
|
|
+ border
|
|
|
+ :tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
|
|
|
+ :default-expand-all="isExpandAll"
|
|
|
+ >
|
|
|
+ <el-table-column prop="deptName" label="部门名称"></el-table-column>
|
|
|
+ <el-table-column prop="deptNo" align="center" label="类别编码"></el-table-column>
|
|
|
+ <el-table-column prop="orderNum" align="center" label="排序"></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>{{ proxy.parseTime(scope.row.createTime) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column fixed="right" align="center" label="操作">
|
|
|
+ <template #default="scope">
|
|
|
+ <el-button v-hasPermi="['system:erpDept:edit']" link type="primary" icon="Edit" @click="handleUpdate(scope.row)">编辑</el-button>
|
|
|
+ <el-button v-hasPermi="['system:erpDept:add']" link type="primary" icon="Plus" @click="handleAdd(scope.row)">新增</el-button>
|
|
|
+ <el-button v-hasPermi="['system:erpDept:remove']" link type="primary" icon="Delete" @click="handleDelete(scope.row)">删除</el-button>
|
|
|
+ </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="erpDeptFormRef" :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="deptNo">
|
|
|
+ <el-input v-model="form.deptNo" 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-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="部门经理" prop="managerId">
|
|
|
+ <el-select v-model="form.managerId" placeholder="请选择部门经理" @change="handleManagerChange" filterable>
|
|
|
+ <el-option v-for="item in staffOptions" :key="item.staffId" :label="`${item.staffCode} , ${item.staffName}`" :value="item.staffId" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="部门主管" prop="chargeId">
|
|
|
+ <el-select v-model="form.chargeId" placeholder="请选择部门主管" @change="handleChargeChange" filterable>
|
|
|
+ <el-option v-for="item in staffOptions" :key="item.staffId" :label="`${item.staffCode} , ${item.staffName}`" :value="item.staffId" />
|
|
|
+ </el-select>
|
|
|
+ </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="ErpDept" lang="ts">
|
|
|
+import { listErpDept, getErpDept, delErpDept, addErpDept, updateErpDept, listErpDeptExcludeChild } from '@/api/erpData/erpDept';
|
|
|
+import { ErpDeptVO, ErpDeptQuery, ErpDeptForm } from '@/api/erpData/erpDept/types';
|
|
|
+import { listComStaff } from '@/api/company/comStaff';
|
|
|
+import { ComStaffVO } from '@/api/company/comStaff/types';
|
|
|
+
|
|
|
+interface DeptOptionsType {
|
|
|
+ deptId: number | string;
|
|
|
+ deptName: string;
|
|
|
+ children: DeptOptionsType[];
|
|
|
+}
|
|
|
+
|
|
|
+const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
+const { sys_normal_disable } = toRefs<any>(proxy?.useDict('sys_normal_disable'));
|
|
|
+
|
|
|
+const erpDeptList = ref<ErpDeptVO[]>([]);
|
|
|
+const loading = ref(true);
|
|
|
+const showSearch = ref(true);
|
|
|
+const deptOptions = ref<DeptOptionsType[]>([]);
|
|
|
+const isExpandAll = ref(true);
|
|
|
+const staffOptions = ref<ComStaffVO[]>([]);
|
|
|
+
|
|
|
+const dialog = reactive<DialogOption>({
|
|
|
+ visible: false,
|
|
|
+ title: ''
|
|
|
+});
|
|
|
+
|
|
|
+const deptTableRef = ref<ElTableInstance>();
|
|
|
+const queryFormRef = ref<ElFormInstance>();
|
|
|
+const erpDeptFormRef = ref<ElFormInstance>();
|
|
|
+
|
|
|
+const initFormData: ErpDeptForm = {
|
|
|
+ deptId: undefined,
|
|
|
+ parentId: undefined,
|
|
|
+ deptName: undefined,
|
|
|
+ deptCategory: undefined,
|
|
|
+ deptNo: undefined,
|
|
|
+ orderNum: 0,
|
|
|
+ leader: undefined,
|
|
|
+ phone: undefined,
|
|
|
+ email: undefined,
|
|
|
+ status: '0',
|
|
|
+ managerId: undefined,
|
|
|
+ chargeId: undefined,
|
|
|
+ managerNo: undefined,
|
|
|
+ chargeNo: undefined,
|
|
|
+ managerName: undefined,
|
|
|
+ chargeName: undefined
|
|
|
+};
|
|
|
+
|
|
|
+const initData: PageData<ErpDeptForm, ErpDeptQuery> = {
|
|
|
+ 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' }]
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+const data = reactive<PageData<ErpDeptForm, ErpDeptQuery>>(initData);
|
|
|
+const { queryParams, form, rules } = toRefs<PageData<ErpDeptForm, ErpDeptQuery>>(data);
|
|
|
+
|
|
|
+/** 查询菜单列表 */
|
|
|
+const getList = async () => {
|
|
|
+ loading.value = true;
|
|
|
+ const res = await listErpDept(queryParams.value);
|
|
|
+ const data = proxy?.handleTree<ErpDeptVO>(res.data, 'deptId');
|
|
|
+ if (data) {
|
|
|
+ erpDeptList.value = data;
|
|
|
+ }
|
|
|
+ loading.value = false;
|
|
|
+};
|
|
|
+
|
|
|
+/** 取消按钮 */
|
|
|
+const cancel = () => {
|
|
|
+ reset();
|
|
|
+ dialog.visible = false;
|
|
|
+};
|
|
|
+
|
|
|
+/** 表单重置 */
|
|
|
+const reset = () => {
|
|
|
+ form.value = { ...initFormData };
|
|
|
+ erpDeptFormRef.value?.resetFields();
|
|
|
+};
|
|
|
+
|
|
|
+/** 搜索按钮操作 */
|
|
|
+const handleQuery = () => {
|
|
|
+ getList();
|
|
|
+};
|
|
|
+
|
|
|
+/** 重置按钮操作 */
|
|
|
+const resetQuery = () => {
|
|
|
+ queryFormRef.value?.resetFields();
|
|
|
+ handleQuery();
|
|
|
+};
|
|
|
+
|
|
|
+/** 获取员工列表 */
|
|
|
+const getStaffList = async () => {
|
|
|
+ try {
|
|
|
+ const res = await listComStaff();
|
|
|
+ staffOptions.value = res.rows || [];
|
|
|
+ } catch (error) {
|
|
|
+ console.error('获取列表失败:', error);
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+/** 经理变更 */
|
|
|
+const handleManagerChange = (staffId: string | number) => {
|
|
|
+ if (staffId) {
|
|
|
+ const staff = staffOptions.value.find((item) => item.staffId === staffId);
|
|
|
+ if (staff) {
|
|
|
+ form.value.managerName = staff.staffName || '';
|
|
|
+ form.value.managerNo = staff.staffCode || '';
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ form.value.managerName = '';
|
|
|
+ form.value.managerNo = '';
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+/** 主管变更 */
|
|
|
+const handleChargeChange = (staffId: string | number) => {
|
|
|
+ if (staffId) {
|
|
|
+ const staff = staffOptions.value.find((item) => item.staffId === staffId);
|
|
|
+ if (staff) {
|
|
|
+ form.value.chargeName = staff.staffName || '';
|
|
|
+ form.value.chargeNo = staff.staffCode || '';
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ form.value.chargeName = '';
|
|
|
+ form.value.chargeNo = '';
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+/** 展开/折叠操作 */
|
|
|
+const handleToggleExpandAll = () => {
|
|
|
+ isExpandAll.value = !isExpandAll.value;
|
|
|
+ toggleExpandAll(erpDeptList.value, isExpandAll.value);
|
|
|
+};
|
|
|
+
|
|
|
+/** 展开/折叠所有 */
|
|
|
+const toggleExpandAll = (data: any[], status: boolean) => {
|
|
|
+ data.forEach((item) => {
|
|
|
+ deptTableRef.value?.toggleRowExpansion(item, status);
|
|
|
+ if (item.children && item.children.length > 0) toggleExpandAll(item.children, status);
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+/** 新增按钮操作 */
|
|
|
+const handleAdd = async (row?: ErpDeptVO) => {
|
|
|
+ reset();
|
|
|
+ const res = await listErpDept();
|
|
|
+ const data = proxy?.handleTree<DeptOptionsType>(res.data, 'deptId');
|
|
|
+ if (data) {
|
|
|
+ deptOptions.value = data;
|
|
|
+ if (row && row.deptId) {
|
|
|
+ form.value.parentId = row?.deptId;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ dialog.visible = true;
|
|
|
+ dialog.title = '添加部门';
|
|
|
+};
|
|
|
+
|
|
|
+/** 修改按钮操作 */
|
|
|
+const handleUpdate = async (row: ErpDeptVO) => {
|
|
|
+ reset();
|
|
|
+ const res = await getErpDept(row.deptId);
|
|
|
+ form.value = res.data;
|
|
|
+ const response = await listErpDeptExcludeChild(row.deptId);
|
|
|
+ const data = proxy?.handleTree<DeptOptionsType>(response.data, 'deptId');
|
|
|
+ if (data) {
|
|
|
+ deptOptions.value = data;
|
|
|
+ }
|
|
|
+ dialog.visible = true;
|
|
|
+ dialog.title = '修改部门';
|
|
|
+};
|
|
|
+
|
|
|
+/** 提交按钮 */
|
|
|
+const submitForm = () => {
|
|
|
+ erpDeptFormRef.value?.validate(async (valid: boolean) => {
|
|
|
+ if (valid) {
|
|
|
+ form.value.deptId ? await updateErpDept(form.value) : await addErpDept(form.value);
|
|
|
+ proxy?.$modal.msgSuccess('操作成功');
|
|
|
+ dialog.visible = false;
|
|
|
+ await getList();
|
|
|
+ }
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+/** 删除按钮操作 */
|
|
|
+const handleDelete = async (row: ErpDeptVO) => {
|
|
|
+ await proxy?.$modal.confirm('是否确认删除名称为"' + row.deptName + '"的数据项?');
|
|
|
+ await delErpDept(row.deptId);
|
|
|
+ await getList();
|
|
|
+ proxy?.$modal.msgSuccess('删除成功');
|
|
|
+};
|
|
|
+
|
|
|
+onMounted(() => {
|
|
|
+ getList();
|
|
|
+ getStaffList();
|
|
|
+});
|
|
|
+</script>
|