230 lines
6.7 KiB
Vue
Raw Normal View History

2022-11-15 17:44:28 +08:00
<template>
<div class="flex">
<el-card class="w-1/3 dept" :gutter="12" shadow="always">
<template #header>
<div class="card-header">
<span>部门列表</span>
<XButton
type="primary"
preIcon="ep:zoom-in"
title="新增根节点"
v-hasPermi="['system:dept:create']"
@click="handleCreate"
/>
</div>
</template>
<div class="custom-tree-container">
<!-- <p>部门列表</p> -->
<!-- 操作工具栏 -->
<el-input v-model="filterText" placeholder="搜索部门" />
<el-tree
ref="treeRef"
node-key="id"
:data="deptOptions"
:props="defaultProps"
:highlight-current="true"
default-expand-all
:filter-node-method="filterNode"
:expand-on-click-node="false"
>
<template #default="{ node, data }">
<span class="custom-tree-node">
<span>{{ node.label }}</span>
<span>
<XTextButton
preIcon="ep:zoom-in"
:title="t('action.add')"
v-hasPermi="['system:dept:create']"
@click="handleCreate(data)"
/>
<XTextButton
preIcon="ep:edit"
:title="t('action.edit')"
v-hasPermi="['system:dept:update']"
@click="handleUpdate(data)"
/>
<XTextButton
preIcon="ep:delete"
:title="t('action.del')"
v-hasPermi="['system:dept:delete']"
@click="handleDelete(data)"
/>
</span>
</span>
</template>
</el-tree>
</div>
</el-card>
<el-card class="w-2/3 dept" style="margin-left: 10px" :gutter="12" shadow="hover">
<template #header>
<div class="card-header">
<span>{{ formTitle }}</span>
</div>
</template>
<div v-if="!showForm">
<span><p>请从左侧选择部门</p></span>
</div>
<div v-if="showForm">
<!-- 操作工具栏 -->
<Form ref="formRef" :schema="modelSchema" :rules="rules">
<template #parentId>
<el-tree-select
node-key="id"
v-model="deptParentId"
:props="defaultProps"
:data="deptOptions"
check-strictly
/>
</template>
<template #leaderUserId>
<el-select v-model="leaderUserId">
<el-option
v-for="item in userOption"
:key="parseInt(item.id)"
:label="item.nickname"
:value="parseInt(item.id)"
/>
</el-select>
</template>
</Form>
<!-- 按钮保存 -->
<XButton
type="primary"
:title="t('action.save')"
v-hasPermi="['system:dept:update']"
:loading="loading"
@click="submitForm()"
/>
<!-- 按钮关闭 -->
<XButton :loading="loading" :title="t('dialog.close')" @click="showForm = false" />
</div>
</el-card>
</div>
</template>
2022-07-18 19:06:37 +08:00
<script setup lang="ts">
import { useI18n } from '@/hooks/web/useI18n'
import { ElInput, ElCard, ElTree, ElTreeSelect, ElSelect, ElOption } from 'element-plus'
2022-07-18 19:06:37 +08:00
import { handleTree } from '@/utils/tree'
2022-07-20 10:36:00 +08:00
import { onMounted, ref, unref, watch } from 'vue'
2022-07-18 19:06:37 +08:00
import * as DeptApi from '@/api/system/dept'
import { Form, FormExpose } from '@/components/Form'
import { modelSchema, rules } from './dept.data'
2022-07-18 19:06:37 +08:00
import { DeptVO } from '@/api/system/dept/types'
2022-07-21 17:42:25 +08:00
import { useMessage } from '@/hooks/web/useMessage'
2022-08-01 21:05:42 +08:00
import { getListSimpleUsersApi } from '@/api/system/user'
2022-07-21 17:42:25 +08:00
const message = useMessage()
2022-07-18 19:06:37 +08:00
const defaultProps = {
children: 'children',
label: 'name',
value: 'id'
}
const { t } = useI18n() // 国际化
const loading = ref(false) // 遮罩层
const dialogVisible = ref(false) // 是否显示弹出层
const showForm = ref(false) // 显示form表单
const formTitle = ref('部门信息') // 显示form标题
const deptParentId = ref(0) // 上级ID
// 创建form表单
const formRef = ref<FormExpose>()
// ========== 创建部门树结构 ==========
2022-07-20 10:36:00 +08:00
const filterText = ref('')
2022-07-21 16:51:58 +08:00
const deptOptions = ref() // 树形结构
2022-07-18 19:06:37 +08:00
const treeRef = ref<InstanceType<typeof ElTree>>()
const getTree = async () => {
2022-08-01 21:05:42 +08:00
const res = await DeptApi.listSimpleDeptApi()
2022-07-18 19:06:37 +08:00
deptOptions.value = handleTree(res)
}
const filterNode = (value: string, data: Tree) => {
if (!value) return true
return data.name.includes(value)
}
2022-07-20 10:36:00 +08:00
watch(filterText, (val) => {
treeRef.value!.filter(val)
})
2022-08-01 21:05:42 +08:00
// 用户列表
const userOption = ref()
const leaderUserId = ref()
const getUserList = async () => {
const res = await getListSimpleUsersApi()
userOption.value = res
}
2022-07-18 19:06:37 +08:00
// 新增
2022-11-15 17:42:04 +08:00
const handleCreate = (data: { id: number }) => {
2022-07-18 19:06:37 +08:00
// 重置表单
2022-07-20 10:36:00 +08:00
deptParentId.value = data.id
2022-07-18 19:06:37 +08:00
formTitle.value = '新增部门'
showForm.value = true
}
// 编辑
const handleUpdate = async (data: { id: number }) => {
const res = await DeptApi.getDeptApi(data.id)
formTitle.value = '修改- ' + res?.name
deptParentId.value = res.parentId
2022-08-01 21:05:42 +08:00
leaderUserId.value = res.leaderUserId
2022-07-18 19:06:37 +08:00
unref(formRef)?.setValues(res)
2022-08-01 21:05:42 +08:00
showForm.value = true
2022-07-18 19:06:37 +08:00
}
// 删除
const handleDelete = async (data: { id: number }) => {
2022-07-21 17:42:25 +08:00
message
.confirm(t('common.delDataMessage'), t('common.confirmTitle'))
2022-07-18 19:06:37 +08:00
.then(async () => {
await DeptApi.deleteDeptApi(data.id)
2022-07-21 17:42:25 +08:00
message.success(t('common.delSuccess'))
2022-07-18 19:06:37 +08:00
})
.catch(() => {})
await getTree()
}
// 提交按钮
const submitForm = async () => {
2022-10-17 11:24:22 +08:00
const elForm = unref(formRef)?.getElFormRef()
if (!elForm) return
elForm.validate(async (valid) => {
if (valid) {
loading.value = true
// 提交请求
try {
const data = unref(formRef)?.formModel as DeptVO
data.parentId = deptParentId.value
data.leaderUserId = leaderUserId.value
if (formTitle.value.startsWith('新增')) {
await DeptApi.createDeptApi(data)
} else if (formTitle.value.startsWith('修改')) {
await DeptApi.updateDeptApi(data)
}
// 操作成功,重新加载列表
dialogVisible.value = false
} finally {
loading.value = false
}
2022-07-18 19:06:37 +08:00
}
2022-10-17 11:24:22 +08:00
})
2022-07-18 19:06:37 +08:00
}
onMounted(async () => {
await getTree()
2022-08-01 21:05:42 +08:00
await getUserList()
2022-07-18 19:06:37 +08:00
})
</script>
2022-11-15 17:44:28 +08:00
2022-07-18 19:06:37 +08:00
<style scoped>
.dept {
height: 600px;
max-height: 1800px;
}
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.custom-tree-node {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
padding-right: 8px;
}
</style>