2023-03-19 13:04:59 +08:00
|
|
|
|
<template>
|
|
|
|
|
<Dialog :title="modelTitle" v-model="modelVisible" width="800">
|
|
|
|
|
<el-form ref="formRef" :model="formData" :rules="formRules" label-width="80px">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="24" v-if="formData.parentId !== 0">
|
|
|
|
|
<el-form-item label="上级部门" prop="parentId">
|
|
|
|
|
<el-tree-select
|
|
|
|
|
v-model="formData.parentId"
|
|
|
|
|
:data="deptOptions"
|
|
|
|
|
:props="{ value: 'id', label: 'name', children: 'children' }"
|
|
|
|
|
value-key="deptId"
|
|
|
|
|
placeholder="选择上级部门"
|
|
|
|
|
check-strictly
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="部门名称" prop="name">
|
|
|
|
|
<el-input v-model="formData.name" placeholder="请输入部门名称" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="显示排序" prop="sort">
|
|
|
|
|
<el-input-number v-model="formData.sort" controls-position="right" :min="0" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="负责人" prop="leaderUserId">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="formData.leaderUserId"
|
|
|
|
|
placeholder="请输入负责人"
|
|
|
|
|
clearable
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
2023-03-19 21:44:13 +08:00
|
|
|
|
v-for="item in userList"
|
2023-03-19 13:04:59 +08:00
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.nickname"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="联系电话" prop="phone">
|
|
|
|
|
<el-input v-model="formData.phone" placeholder="请输入联系电话" maxlength="11" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="邮箱" prop="email">
|
|
|
|
|
<el-input v-model="formData.email" placeholder="请输入邮箱" maxlength="50" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="状态" prop="status">
|
|
|
|
|
<el-select v-model="formData.status" placeholder="请选择状态" clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in getDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
|
|
|
:key="parseInt(dict.value)"
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
:value="parseInt(dict.value)"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</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="modelVisible = false">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</Dialog>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { DICT_TYPE, getDictOptions } from '@/utils/dict'
|
|
|
|
|
import * as DeptApi from '@/api/system/dept'
|
|
|
|
|
import { UserVO } from '@/api/system/user'
|
|
|
|
|
import { handleTree } from '@/utils/tree'
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
const modelVisible = ref(false) // 弹窗的是否展示
|
|
|
|
|
const modelTitle = ref('') // 弹窗的标题
|
|
|
|
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
|
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
|
|
|
|
const formRef = ref() // 表单 Ref
|
|
|
|
|
const deptOptions = ref() // 树形结构
|
2023-03-19 21:44:13 +08:00
|
|
|
|
const userList = ref() // 负责人列表选项结构
|
2023-03-19 13:04:59 +08:00
|
|
|
|
|
|
|
|
|
const formData = ref({
|
|
|
|
|
id: undefined,
|
|
|
|
|
title: '',
|
|
|
|
|
parentId: undefined,
|
|
|
|
|
name: undefined,
|
|
|
|
|
sort: undefined,
|
|
|
|
|
leaderUserId: undefined,
|
|
|
|
|
phone: undefined,
|
|
|
|
|
email: undefined,
|
|
|
|
|
status: undefined
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const formRules = reactive({
|
|
|
|
|
parentId: [{ required: true, message: '上级部门不能为空', trigger: 'blur' }],
|
|
|
|
|
name: [{ required: true, message: '部门名称不能为空', trigger: 'blur' }],
|
|
|
|
|
order: [{ required: true, message: '显示排序不能为空', trigger: 'blur' }],
|
|
|
|
|
email: [{ type: 'email', message: '请输入正确的邮箱地址', trigger: ['blur', 'change'] }],
|
|
|
|
|
phone: [
|
|
|
|
|
{ pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/, message: '请输入正确的手机号码', trigger: 'blur' }
|
|
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/** 打开弹窗 */
|
2023-03-19 21:44:13 +08:00
|
|
|
|
const openModal = async (type: string, id?: number, userOption?: UserVO[]) => {
|
|
|
|
|
userList.value = userOption
|
2023-03-19 13:04:59 +08:00
|
|
|
|
modelVisible.value = true
|
|
|
|
|
modelTitle.value = t('action.' + type)
|
|
|
|
|
formType.value = type
|
|
|
|
|
resetForm()
|
|
|
|
|
// 修改时,设置数据
|
|
|
|
|
if (id) {
|
|
|
|
|
formLoading.value = true
|
|
|
|
|
try {
|
|
|
|
|
formData.value = await DeptApi.getDeptApi(id)
|
|
|
|
|
} finally {
|
|
|
|
|
formLoading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defineExpose({ openModal }) // 提供 openModal 方法,用于打开弹窗
|
|
|
|
|
|
|
|
|
|
/** 提交表单 */
|
|
|
|
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
|
|
|
|
const submitForm = async () => {
|
|
|
|
|
// 校验表单
|
|
|
|
|
if (!formRef) return
|
|
|
|
|
const valid = await formRef.value.validate()
|
|
|
|
|
if (!valid) return
|
|
|
|
|
// 提交请求
|
|
|
|
|
formLoading.value = true
|
|
|
|
|
try {
|
|
|
|
|
const data = formData.value as unknown as DeptApi.DeptVO
|
|
|
|
|
if (formType.value === 'create') {
|
|
|
|
|
await DeptApi.createDeptApi(data)
|
|
|
|
|
message.success(t('common.createSuccess'))
|
|
|
|
|
} else {
|
|
|
|
|
await DeptApi.updateDeptApi(data)
|
|
|
|
|
message.success(t('common.updateSuccess'))
|
|
|
|
|
}
|
|
|
|
|
modelVisible.value = false
|
|
|
|
|
// 发送操作成功的事件
|
|
|
|
|
emit('success')
|
|
|
|
|
} finally {
|
|
|
|
|
formLoading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 重置表单 */
|
|
|
|
|
const resetForm = () => {
|
|
|
|
|
formData.value = {
|
|
|
|
|
id: undefined,
|
|
|
|
|
title: '',
|
|
|
|
|
parentId: undefined,
|
|
|
|
|
name: undefined,
|
|
|
|
|
sort: undefined,
|
|
|
|
|
leaderUserId: undefined,
|
|
|
|
|
phone: undefined,
|
|
|
|
|
email: undefined,
|
|
|
|
|
status: undefined
|
|
|
|
|
}
|
|
|
|
|
formRef.value?.resetFields()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取下拉框[上级]的数据
|
|
|
|
|
const getTree = async () => {
|
|
|
|
|
deptOptions.value = []
|
|
|
|
|
const res = await DeptApi.listSimpleDeptApi()
|
|
|
|
|
let dept: Tree = { id: 0, name: '顶级部门', children: [] }
|
|
|
|
|
dept.children = handleTree(res)
|
|
|
|
|
deptOptions.value.push(dept)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ========== 初始化 ==========
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
await getTree()
|
|
|
|
|
})
|
|
|
|
|
</script>
|