<template>
|
<div class="app-container">
|
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px" @submit.native.prevent>
|
<!-- <el-form-item label="单元编号" prop="code">-->
|
<!-- <el-input-->
|
<!-- v-model="queryParams.code"-->
|
<!-- placeholder="请输入单元编号"-->
|
<!-- clearable-->
|
<!-- size="small"-->
|
<!-- @keyup.enter.native="handleQuery"-->
|
<!-- />-->
|
<!-- </el-form-item>-->
|
<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="buildingList"
|
row-key="id"
|
height="calc(100vh - 210px)"
|
default-expand-all
|
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
|
>
|
<el-table-column label="单元名称" align="left" prop="name" show-overflow-tooltip/>
|
<el-table-column label="单元编号" align="left" width="150" prop="code"/>
|
<el-table-column label="显示顺序" align="center" width="80" prop="orderNum"/>
|
<el-table-column label="操作" align="center" width="180" class-name="small-padding fixed-width">
|
<template slot-scope="scope">
|
<el-button
|
size="mini"
|
type="text"
|
icon="el-icon-edit"
|
@click="handleUpdate(scope.row)"
|
v-hasPermi="['oa:building:edit']"
|
>修改
|
</el-button>
|
<el-button
|
size="mini"
|
type="text"
|
icon="el-icon-plus"
|
@click="handleAdd(scope.row)"
|
>新增
|
</el-button>
|
<el-button
|
size="mini"
|
type="text"
|
class="del-btn"
|
icon="el-icon-delete"
|
@click="handleDelete(scope.row)"
|
v-hasPermi="['oa:building:remove']"
|
>删除
|
</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="buildingOptions" :normalizer="normalizer"
|
placeholder="请选择上级单元"/>
|
</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 {listBuilding, getBuilding, delBuilding, addBuilding, updateBuilding} from "@/api/oa/building";
|
import Treeselect from "@riophae/vue-treeselect";
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
export default {
|
name: "Building",
|
props: {
|
schoolId: {
|
type: Number,
|
default: undefined
|
}
|
},
|
components: {
|
Treeselect
|
},
|
data() {
|
return {
|
// 按钮loading
|
buttonLoading: false,
|
// 遮罩层
|
loading: true,
|
// 显示搜索条件
|
showSearch: true,
|
// 建筑单元表格数据
|
buildingList: [],
|
// 建筑单元树选项
|
buildingOptions: [],
|
// 弹出层标题
|
title: "",
|
// 是否显示弹出层
|
open: false,
|
// 查询参数
|
queryParams: {
|
code: null,
|
name: null,
|
schoolId: this.schoolId
|
},
|
// 表单参数
|
form: {},
|
// 表单校验
|
rules: {
|
code: [
|
{required: true, message: "单元编号不能为空", trigger: "blur"}
|
],
|
name: [
|
{required: true, message: "单元名称不能为空", trigger: "blur"}
|
],
|
orderNum: [
|
{required: true, message: "显示顺序不能为空", trigger: "change"}
|
],
|
parentId: [
|
{required: true, message: "上级单元不能为空", trigger: "blur"}
|
],
|
}
|
};
|
},
|
created() {
|
this.getList();
|
},
|
methods: {
|
/** 查询建筑单元列表 */
|
getList() {
|
this.loading = true;
|
listBuilding(this.queryParams).then(response => {
|
this.buildingList = 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() {
|
listBuilding({schoolId: this.schoolId}).then(response => {
|
this.buildingOptions = [];
|
const data = {id: 0, name: '顶级节点', children: []};
|
data.children = this.handleTree(response.data, "id", "parentId");
|
this.buildingOptions.push(data);
|
});
|
},
|
// 取消按钮
|
cancel() {
|
this.open = false;
|
this.reset();
|
},
|
// 表单重置
|
reset() {
|
this.form = {
|
id: null,
|
code: null,
|
name: 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;
|
}
|
getBuilding(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) {
|
updateBuilding(this.form).then(response => {
|
this.$modal.msgSuccess("修改成功");
|
this.open = false;
|
this.getList();
|
}).finally(() => {
|
this.buttonLoading = false;
|
});
|
} else {
|
addBuilding(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 delBuilding(row.id);
|
}).then(() => {
|
this.loading = false;
|
this.getList();
|
this.$modal.msgSuccess("删除成功");
|
}).finally(() => {
|
this.loading = false;
|
});
|
}
|
}
|
};
|
</script>
|