123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <template>
- <div class="app-container" style="overflow-y: auto;">
- <el-form :model="queryParams" ref="queryForm" :inline="true">
- <el-form-item label="科室名称" prop="deptName">
- <el-input v-model="queryParams.deptName" placeholder="请输入科室名称" clearable @keyup.enter.native="handleQuery"/>
- </el-form-item>
- <el-form-item label="科室状态" prop="status">
- <el-select v-model="queryParams.status" placeholder="科室状态" clearable class="se">
- <el-option v-for="dict in dict.type.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="el-icon-search" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
- <el-button type="info" icon="el-icon-sort" @click="toggleExpandAll">展开/折叠</el-button>
- </el-form-item>
- </el-form>
- <el-table v-if="refreshTable" :data="deptList" row-key="deptId" :default-expand-all="isExpandAll" :tree-props="{ children: 'children', hasChildren: 'hasChildren' }">
- <el-table-column prop="deptName" label="科室名称"/>
- <el-table-column prop="orderNum" label="科室排序" align="center" width="200"/>
- <el-table-column prop="status" label="科室状态" align="center" width="100">
- <template slot-scope="scope">
- <dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status" />
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" width="220">
- <template slot-scope="scope">
- <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['system:dept:edit']">修改</el-button>
- <el-button size="mini" type="text" icon="el-icon-plus" @click="handleAdd(scope.row)" v-hasPermi="['system:dept:add']" v-if="scope.row.ancestors.length < 3">新增</el-button>
- <el-button v-if="scope.row.parentId != 0" size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['system:dept:remove']">删除</el-button>
- </template>
- </el-table-column>
- <template slot="empty">
- <el-empty></el-empty>
- </template>
- </el-table>
- </div>
- </template>
- <script>
- import { listDept, getDept, delDept, addDept, updateDept, listDeptExcludeChild } from '@/api/system/dept';
- import Treeselect from '@riophae/vue-treeselect';
- import '@riophae/vue-treeselect/dist/vue-treeselect.css';
- import edit from './edit';
- export default {
- name: 'Dept',
- dicts: ['sys_normal_disable'],
- components: { Treeselect },
- data() {
- return {
- // 表格树数据
- deptList: [],
- // 科室树选项
- deptOptions: [],
- // 弹出层标题
- title: '',
- // 是否显示弹出层
- open: false,
- // 是否展开,默认全部展开
- isExpandAll: true,
- // 重新渲染表格状态
- refreshTable: true,
- // 查询参数
- queryParams: {
- deptName: undefined,
- status: undefined
- }
- };
- },
- created() {
- this.getList();
- },
- methods: {
- /** 查询科室列表 */
- getList() {
- listDept(this.queryParams).then((response) => {
- response.data.forEach((item) => {
- if (item.ancestors) {
- item.ancestors = item.ancestors.split(',');
- } else {
- item.ancestors = [];
- }
- });
- this.deptList = this.handleTree(response.data, 'deptId');
- });
- },
- /** 转换科室数据结构 */
- normalizer(node) {
- if (node.children && !node.children.length) {
- delete node.children;
- }
- return {
- id: node.deptId,
- label: node.deptName,
- children: node.children
- };
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- deptId: undefined,
- parentId: undefined,
- deptName: undefined,
- orderNum: undefined,
- leader: undefined,
- phone: undefined,
- email: undefined,
- status: '0'
- };
- this.resetForm('form');
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm('queryForm');
- this.handleQuery();
- },
- /** 新增按钮操作 */
- handleAdd(row) {
- this.iframe({ obj: edit, param: { parentId: row.deptId, ancestors: row.ancestors }, title: '新增科室', width: '55%', height: '78%' });
- },
- /** 展开/折叠操作 */
- toggleExpandAll() {
- this.refreshTable = false;
- this.isExpandAll = !this.isExpandAll;
- this.$nextTick(() => {
- this.refreshTable = true;
- });
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.iframe({ obj: edit, param: { id: row.deptId }, title: '编辑科室', width: '55%', height: '78%' });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- this.$modal
- .confirm('是否确认删除名称为"' + row.deptName + '"的数据项?')
- .then(function () {
- return delDept(row.deptId);
- })
- .then(() => {
- this.getList();
- this.$modal.msgSuccess('删除成功');
- })
- .catch(() => {});
- }
- }
- };
- </script>
|