<template>
|
<div class="system-dept-container layout-padding">
|
<el-card shadow="hover" class="layout-padding-auto">
|
<div class="system-dept-search mb15">
|
<el-input size="default" placeholder="请输入部门名称" style="max-width: 180px"> </el-input>
|
<el-button size="default" type="primary" class="ml10">
|
<el-icon>
|
<ele-Search />
|
</el-icon>
|
查询
|
</el-button>
|
<el-button size="default" type="success" class="ml10" @click="onOpenAddDept('add')">
|
<el-icon>
|
<ele-FolderAdd />
|
</el-icon>
|
新增部门
|
</el-button>
|
</div>
|
<el-table
|
:data="state.tableData.data"
|
v-loading="state.tableData.loading"
|
style="width: 100%"
|
row-key="id"
|
default-expand-all
|
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
|
>
|
<el-table-column prop="deptName" label="部门名称" show-overflow-tooltip> </el-table-column>
|
<el-table-column label="排序" show-overflow-tooltip width="80">
|
<template #default="scope">
|
{{ scope.$index }}
|
</template>
|
</el-table-column>
|
<el-table-column prop="status" label="部门状态" show-overflow-tooltip>
|
<template #default="scope">
|
<el-tag type="success" v-if="scope.row.status">启用</el-tag>
|
<el-tag type="info" v-else>禁用</el-tag>
|
</template>
|
</el-table-column>
|
<el-table-column prop="describe" label="部门描述" show-overflow-tooltip></el-table-column>
|
<el-table-column prop="createTime" label="创建时间" show-overflow-tooltip></el-table-column>
|
<el-table-column label="操作" show-overflow-tooltip width="140">
|
<template #default="scope">
|
<el-button size="small" text type="primary" @click="onOpenAddDept('add')">新增</el-button>
|
<el-button size="small" text type="primary" @click="onOpenEditDept('edit', scope.row)">修改</el-button>
|
<el-button size="small" text type="primary" @click="onTabelRowDel(scope.row)">删除</el-button>
|
</template>
|
</el-table-column>
|
</el-table>
|
</el-card>
|
<DeptDialog ref="deptDialogRef" @refresh="getTableData()" />
|
</div>
|
</template>
|
|
<script setup lang="ts" name="systemDept">
|
import { defineAsyncComponent, ref, reactive, onMounted } from 'vue';
|
import { ElMessageBox, ElMessage } from 'element-plus';
|
|
// 引入组件
|
const DeptDialog = defineAsyncComponent(() => import('/@/views/system/dept/dialog.vue'));
|
|
// 定义变量内容
|
const deptDialogRef = ref();
|
const state = reactive<SysDeptState>({
|
tableData: {
|
data: [],
|
total: 0,
|
loading: false,
|
param: {
|
pageNum: 1,
|
pageSize: 10,
|
},
|
},
|
});
|
|
// 初始化表格数据
|
const getTableData = () => {
|
state.tableData.loading = true;
|
state.tableData.data = [];
|
state.tableData.data.push({
|
deptName: 'vueNextAdmin',
|
createTime: new Date().toLocaleString(),
|
status: true,
|
sort: Math.random(),
|
describe: '顶级部门',
|
id: Math.random(),
|
children: [
|
{
|
deptName: 'IT外包服务',
|
createTime: new Date().toLocaleString(),
|
status: true,
|
sort: Math.random(),
|
describe: '总部',
|
id: Math.random(),
|
},
|
{
|
deptName: '资本控股',
|
createTime: new Date().toLocaleString(),
|
status: true,
|
sort: Math.random(),
|
describe: '分部',
|
id: Math.random(),
|
},
|
],
|
});
|
state.tableData.total = state.tableData.data.length;
|
setTimeout(() => {
|
state.tableData.loading = false;
|
}, 500);
|
};
|
// 打开新增菜单弹窗
|
const onOpenAddDept = (type: string) => {
|
deptDialogRef.value.openDialog(type);
|
};
|
// 打开编辑菜单弹窗
|
const onOpenEditDept = (type: string, row: DeptTreeType) => {
|
deptDialogRef.value.openDialog(type, row);
|
};
|
// 删除当前行
|
const onTabelRowDel = (row: DeptTreeType) => {
|
ElMessageBox.confirm(`此操作将永久删除部门:${row.deptName}, 是否继续?`, '提示', {
|
confirmButtonText: '删除',
|
cancelButtonText: '取消',
|
type: 'warning',
|
})
|
.then(() => {
|
getTableData();
|
ElMessage.success('删除成功');
|
})
|
.catch(() => {});
|
};
|
// 页面加载时
|
onMounted(() => {
|
getTableData();
|
});
|
</script>
|