<template>
|
<div class="app-container">
|
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
<el-form-item label="机构名称" prop="name">
|
<el-input
|
v-model="queryParams.name"
|
placeholder="请输入机构名称"
|
clearable
|
size="small"
|
@keyup.enter.native="handleQuery"
|
/>
|
</el-form-item>
|
<el-form-item>
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
</el-form-item>
|
</el-form>
|
|
<el-row :gutter="10" class="mb8">
|
<el-col :span="1.5">
|
<el-button
|
type="primary"
|
plain
|
icon="el-icon-plus"
|
size="mini"
|
@click="handleAdd"
|
>新增
|
</el-button>
|
</el-col>
|
</el-row>
|
|
<el-table
|
v-loading="loading"
|
:data="organizationList"
|
row-key="id"
|
default-expand-all
|
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
|
>
|
<el-table-column label="机构名称" align="center" prop="name"/>
|
<el-table-column label="机构编号" prop="code"/>
|
<el-table-column label="显示顺序" align="center" prop="orderNum"/>
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
<template slot-scope="scope">
|
<el-button
|
size="mini"
|
type="text"
|
icon="el-icon-edit"
|
@click="handleUpdate(scope.row)"
|
>修改
|
</el-button>
|
<el-button
|
size="mini"
|
type="text"
|
icon="el-icon-plus"
|
@click="handleAdd(scope.row)"
|
>新增
|
</el-button>
|
<el-button
|
size="mini"
|
type="text"
|
icon="el-icon-delete"
|
@click="handleDelete(scope.row)"
|
>删除
|
</el-button>
|
</template>
|
</el-table-column>
|
</el-table>
|
|
<!-- 添加或修改高校组织机构对话框 -->
|
<el-dialog :title="title" :visible.sync="open" width="500px" :append-to-body="true" :close-on-click-modal="false">
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
<el-form-item label="上级机构" prop="parentId">
|
<treeselect v-model="form.parentId" :options="organizationOptions" :normalizer="normalizer"
|
placeholder="请选择父级id"/>
|
</el-form-item>
|
<el-form-item label="机构名称" prop="name">
|
<el-input v-model="form.name" placeholder="请输入机构名称"/>
|
</el-form-item>
|
<el-form-item label="机构编号" prop="code">
|
<el-input v-model="form.code" placeholder="请输入机构编号"/>
|
</el-form-item>
|
<el-form-item label="显示顺序" prop="orderNum">
|
<el-input-number v-model="form.orderNum" controls-position="right" :min="0"/>
|
</el-form-item>
|
</el-form>
|
<div slot="footer" class="dialog-footer">
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
<el-button @click="cancel">取 消</el-button>
|
</div>
|
</el-dialog>
|
</div>
|
</template>
|
|
<script>
|
import {
|
listOrganization,
|
getOrganization,
|
delOrganization,
|
addOrganization,
|
updateOrganization
|
} from "@/api/oa/organization";
|
import Treeselect from "@riophae/vue-treeselect";
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
export default {
|
name: "Organization",
|
components: {
|
Treeselect
|
},
|
props: {
|
schoolId: {
|
type: Number,
|
default: undefined
|
}
|
},
|
data() {
|
return {
|
// 按钮loading
|
buttonLoading: false,
|
// 遮罩层
|
loading: true,
|
// 显示搜索条件
|
showSearch: true,
|
// 高校组织机构表格数据
|
organizationList: [],
|
// 高校组织机构树选项
|
organizationOptions: [],
|
// 弹出层标题
|
title: "",
|
// 是否显示弹出层
|
open: false,
|
// 查询参数
|
queryParams: {
|
name: null,
|
schoolId: this.schoolId
|
},
|
// 表单参数
|
form: {},
|
// 表单校验
|
rules: {
|
id: [
|
{required: true, message: "不能为空", trigger: "blur"}
|
],
|
code: [
|
{required: true, message: "机构编号不能为空", trigger: "blur"}
|
],
|
name: [
|
{required: true, message: "机构名称不能为空", trigger: "blur"}
|
],
|
schoolId: [
|
{required: true, message: "高校不能为空", trigger: "blur"}
|
],
|
parentId: [
|
{required: true, message: "父级id不能为空", trigger: "blur"}
|
],
|
}
|
};
|
},
|
created() {
|
this.getList();
|
},
|
methods: {
|
/** 查询高校组织机构列表 */
|
getList() {
|
this.loading = true;
|
listOrganization(this.queryParams).then(response => {
|
this.organizationList = this.handleTree(response.data, "id", "parentId");
|
this.loading = false;
|
});
|
},
|
/** 转换高校组织机构数据结构 */
|
normalizer(node) {
|
if (node.children && !node.children.length) {
|
delete node.children;
|
}
|
return {
|
id: node.id,
|
label: node.name,
|
children: node.children
|
};
|
},
|
/** 查询高校组织机构下拉树结构 */
|
getTreeselect() {
|
listOrganization({schoolId: this.schoolId}).then(response => {
|
this.organizationOptions = [];
|
const data = {id: 0, name: '顶级节点', children: []};
|
data.children = this.handleTree(response.data, "id", "parentId");
|
this.organizationOptions.push(data);
|
});
|
},
|
// 取消按钮
|
cancel() {
|
this.open = false;
|
this.reset();
|
},
|
// 表单重置
|
reset() {
|
this.form = {
|
id: null,
|
code: null,
|
name: null,
|
detailedName: null,
|
schoolId: null,
|
parentId: null,
|
ancestors: null,
|
orderNum: null,
|
createBy: null,
|
createTime: null,
|
updateBy: null,
|
updateTime: null,
|
delFlag: null
|
};
|
this.resetForm("form");
|
},
|
/** 搜索按钮操作 */
|
handleQuery() {
|
this.getList();
|
},
|
/** 重置按钮操作 */
|
resetQuery() {
|
this.resetForm("queryForm");
|
this.handleQuery();
|
},
|
/** 新增按钮操作 */
|
handleAdd(row) {
|
this.reset();
|
this.getTreeselect();
|
if (row != null && row.id) {
|
this.form.parentId = row.id;
|
} else {
|
this.form.parentId = 0;
|
}
|
this.open = true;
|
this.title = "添加高校组织机构";
|
},
|
/** 修改按钮操作 */
|
handleUpdate(row) {
|
this.loading = true;
|
this.reset();
|
this.getTreeselect();
|
if (row != null) {
|
this.form.parentId = row.id;
|
}
|
getOrganization(row.id).then(response => {
|
this.loading = false;
|
this.form = response.data;
|
this.open = true;
|
this.title = "修改高校组织机构";
|
});
|
},
|
/** 提交按钮 */
|
submitForm() {
|
this.$refs["form"].validate(valid => {
|
if (valid) {
|
this.buttonLoading = true;
|
this.form.schoolId = this.schoolId;
|
if (this.form.id != null) {
|
updateOrganization(this.form).then(response => {
|
this.$modal.msgSuccess("修改成功");
|
this.open = false;
|
this.getList();
|
}).finally(() => {
|
this.buttonLoading = false;
|
});
|
} else {
|
addOrganization(this.form).then(response => {
|
this.$modal.msgSuccess("新增成功");
|
this.open = false;
|
this.getList();
|
}).finally(() => {
|
this.buttonLoading = false;
|
});
|
}
|
}
|
});
|
},
|
/** 删除按钮操作 */
|
handleDelete(row) {
|
this.$modal.confirm('是否确认删除?').then(() => {
|
this.loading = true;
|
return delOrganization(row.id);
|
}).then(() => {
|
this.loading = false;
|
this.getList();
|
this.$modal.msgSuccess("删除成功");
|
}).finally(() => {
|
this.loading = false;
|
});
|
}
|
}
|
};
|
</script>
|