290 lines
9.4 KiB
Vue
290 lines
9.4 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
|
|
<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="status">
|
|
<el-select v-model="queryParams.status" placeholder="部门状态" clearable>
|
|
<el-option v-for="dict in statusOptions" :key="dict.dictValue" :label="dict.dictLabel" :value="dict.dictValue" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="search" @click="handleQuery">{{ $t('btn.search') }}</el-button>
|
|
<el-button icon="refresh" @click="resetQuery">{{ $t('btn.reset') }}</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="1.5">
|
|
<el-button plain type="primary" icon="plus" @click="handleAdd" v-hasPermi="['system:dept:add']">{{ $t('btn.add') }}</el-button>
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
<el-button type="info" plain icon="sort" @click="toggleExpandAll">{{ $t('btn.expand') }}/{{ $t('btn.collapse') }}</el-button>
|
|
</el-col>
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table
|
|
v-if="refreshTable"
|
|
v-loading="loading"
|
|
:data="deptList"
|
|
row-key="deptId"
|
|
:default-expand-all="isExpandAll"
|
|
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }">
|
|
<el-table-column prop="deptName" label="部门名称" width="260"></el-table-column>
|
|
<el-table-column prop="leader" label="负责人" width="100"></el-table-column>
|
|
<el-table-column prop="orderNum" label="排序" width="200"></el-table-column>
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
<template #default="scope">
|
|
<dict-tag :options="statusOptions" :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 label="操作" align="center">
|
|
<template #default="scope">
|
|
<el-button text size="small" icon="edit" @click="handleUpdate(scope.row)" v-hasPermi="['system:dept:update']">
|
|
{{ $t('btn.edit') }}
|
|
</el-button>
|
|
<el-button text size="small" icon="plus" @click="handleAdd(scope.row)" v-hasPermi="['system:dept:add']">
|
|
{{ $t('btn.add') }}
|
|
</el-button>
|
|
<el-button
|
|
text
|
|
size="small"
|
|
v-if="scope.row.parentId != 0"
|
|
icon="delete"
|
|
@click="handleDelete(scope.row)"
|
|
v-hasPermi="['system:dept:remove']">
|
|
{{ $t('btn.delete') }}
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<!-- 添加或修改部门对话框 -->
|
|
<el-dialog :title="title" v-model="open" width="600px" append-to-body>
|
|
<el-form ref="formRef" :model="form" :rules="rules" label-width="80px">
|
|
<el-row :gutter="20">
|
|
<el-col :lg="24" v-if="form.parentId !== 0">
|
|
<el-form-item label="上级部门" prop="parentId">
|
|
<el-tree-select
|
|
v-model="form.parentId"
|
|
:data="deptOptions"
|
|
:props="{ value: 'deptId', label: 'deptName', children: 'children' }"
|
|
value-key="deptId"
|
|
placeholder="选择上级部门"
|
|
check-strictly />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :lg="12">
|
|
<el-form-item label="部门名称" prop="deptName">
|
|
<el-input v-model="form.deptName" placeholder="请输入部门名称" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :lg="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 :lg="12">
|
|
<el-form-item label="负责人" prop="leader">
|
|
<el-input v-model="form.leader" placeholder="请输入负责人" maxlength="20" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :lg="12">
|
|
<el-form-item label="联系电话" prop="phone">
|
|
<el-input v-model="form.phone" placeholder="请输入联系电话" maxlength="11" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :lg="12">
|
|
<el-form-item label="邮箱" prop="email">
|
|
<el-input v-model="form.email" placeholder="请输入邮箱" maxlength="50" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :lg="12">
|
|
<el-form-item label="部门状态">
|
|
<el-radio-group v-model="form.status">
|
|
<el-radio v-for="dict in statusOptions" :key="dict.dictValue" :label="dict.dictValue">{{ dict.dictLabel }}</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<template #footer>
|
|
<div class="dialog-footer">
|
|
<el-button text @click="cancel">{{ $t('btn.cancel') }}</el-button>
|
|
<el-button type="primary" @click="submitForm">{{ $t('btn.submit') }}</el-button>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup name="dept">
|
|
import { listDept, getDept, delDept, addDept, updateDept, listDeptExcludeChild } from '@/api/system/dept'
|
|
// 遮罩层
|
|
const loading = ref(true)
|
|
// 显示搜索条件
|
|
const showSearch = ref(true)
|
|
// 表格树数据
|
|
const deptList = ref([])
|
|
// 是否展开,默认全部折叠
|
|
const isExpandAll = ref(false)
|
|
// 重新渲染表格状态
|
|
const refreshTable = ref(true)
|
|
// 部门树选项
|
|
const deptOptions = ref([])
|
|
// 弹出层标题
|
|
const title = ref('')
|
|
// 是否显示弹出层
|
|
const open = ref(false)
|
|
// 状态数据字典
|
|
const statusOptions = ref([])
|
|
// 查询参数
|
|
const queryParams = reactive({
|
|
deptName: undefined,
|
|
status: undefined,
|
|
})
|
|
const state = reactive({
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
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[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
|
message: '请输入正确的手机号码',
|
|
trigger: 'blur',
|
|
},
|
|
],
|
|
},
|
|
})
|
|
const formRef = ref()
|
|
const { form, rules } = toRefs(state)
|
|
const { proxy } = getCurrentInstance()
|
|
/** 查询部门列表 */
|
|
function getList() {
|
|
loading.value = true
|
|
listDept(queryParams).then((response) => {
|
|
deptList.value = proxy.handleTree(response.data, 'deptId')
|
|
loading.value = false
|
|
})
|
|
}
|
|
// 取消按钮
|
|
function cancel() {
|
|
open.value = false
|
|
reset()
|
|
}
|
|
// 表单重置
|
|
function reset() {
|
|
form.value = {
|
|
deptId: undefined,
|
|
parentId: undefined,
|
|
deptName: undefined,
|
|
orderNum: undefined,
|
|
leader: undefined,
|
|
phone: undefined,
|
|
email: undefined,
|
|
status: '0',
|
|
}
|
|
proxy.resetForm('formRef')
|
|
}
|
|
/** 搜索按钮操作 */
|
|
function handleQuery() {
|
|
getList()
|
|
}
|
|
/** 重置按钮操作 */
|
|
function resetQuery() {
|
|
proxy.resetForm('queryForm')
|
|
handleQuery()
|
|
}
|
|
/** 新增按钮操作 */
|
|
function handleAdd(row) {
|
|
reset()
|
|
if (row != undefined) {
|
|
form.value.parentId = row.deptId
|
|
}
|
|
open.value = true
|
|
title.value = '添加部门'
|
|
listDept().then((response) => {
|
|
deptOptions.value = proxy.handleTree(response.data, 'deptId')
|
|
})
|
|
}
|
|
/** 修改按钮操作 */
|
|
function handleUpdate(row) {
|
|
reset()
|
|
getDept(row.deptId).then((response) => {
|
|
form.value = response.data
|
|
open.value = true
|
|
title.value = '修改部门'
|
|
})
|
|
listDeptExcludeChild(row.deptId).then((response) => {
|
|
deptOptions.value = proxy.handleTree(response.data, 'deptId')
|
|
})
|
|
}
|
|
/** 提交按钮 */
|
|
function submitForm() {
|
|
proxy.$refs['formRef'].validate((valid) => {
|
|
if (valid) {
|
|
if (form.value.deptId != undefined) {
|
|
updateDept(form.value).then((response) => {
|
|
proxy.$modal.msgSuccess('修改成功')
|
|
open.value = false
|
|
getList()
|
|
})
|
|
} else {
|
|
addDept(form.value).then((response) => {
|
|
proxy.$modal.msgSuccess('新增成功')
|
|
open.value = false
|
|
getList()
|
|
})
|
|
}
|
|
}
|
|
})
|
|
}
|
|
/** 删除按钮操作 */
|
|
function handleDelete(row) {
|
|
proxy
|
|
.$confirm('是否确认删除名称为"' + row.deptName + '"的数据项?', '警告', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning',
|
|
})
|
|
.then(function () {
|
|
return delDept(row.deptId)
|
|
})
|
|
.then(() => {
|
|
getList()
|
|
proxy.$modal.msgSuccess('删除成功')
|
|
})
|
|
}
|
|
//展开/折叠操作
|
|
function toggleExpandAll() {
|
|
refreshTable.value = false
|
|
isExpandAll.value = !isExpandAll.value
|
|
nextTick(() => {
|
|
refreshTable.value = true
|
|
})
|
|
}
|
|
getList()
|
|
proxy.getDicts('sys_normal_disable').then((response) => {
|
|
statusOptions.value = response.data
|
|
})
|
|
</script>
|