<template>
|
<div class="app-container">
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" >
|
<el-form-item label="项点名称" prop="itemName">
|
<el-input v-model="queryParams.itemName" placeholder="请输入项点名称" clearable @keyup.enter.native="handleQuery" />
|
</el-form-item>
|
<el-form-item>
|
<el-button type="primary" size="mini" @click="handleQuery">查询</el-button>
|
<el-button size="mini" @click="resetQuery">重置</el-button>
|
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd" >新增</el-button>
|
</el-form-item>
|
</el-form>
|
|
<el-row :gutter="10" class="mb8">
|
<el-col :span="1.5">
|
<el-button type="info" plain icon="el-icon-sort" size="mini" @click="toggleExpandAll">展开/折叠</el-button>
|
</el-col>
|
</el-row>
|
|
<el-table :height="tableHeight" v-if="refreshTable" v-loading="loading" :data="configList" row-key="id"
|
:header-cell-style="{ background: '#f8f8f9', color: '#515a6e' }" border
|
:default-expand-all="isExpandAll" :tree-props="{ children: 'children', hasChildren: 'hasChildren' }">
|
<el-table-column prop="itemName" label="项点名称" width="260"></el-table-column>
|
<el-table-column prop="isEnable" label="状态" width="100" align="center">
|
<template slot-scope="scope">
|
<el-tag v-if="scope.row.isEnable">启用</el-tag>
|
<el-tag v-else type="info">禁用</el-tag>
|
</template>
|
</el-table-column>
|
<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 v-if="!scope.row.children" 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="600px" append-to-body>
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
<el-row>
|
<el-col :span="24" v-if="form.parentId > 0">
|
<el-form-item label="上级项点" prop="parentId">
|
<treeselect v-model="form.parentId" :options="configOptions" :normalizer="normalizer"
|
placeholder="选择上级项点" />
|
</el-form-item>
|
</el-col>
|
</el-row>
|
<el-row>
|
<el-col :span="12">
|
<el-form-item label="项点名称" prop="itemName">
|
<el-input v-model="form.itemName" placeholder="请输入项点名称" />
|
</el-form-item>
|
</el-col>
|
<el-col :span="12">
|
<el-form-item label="显示排序" prop="sort">
|
<el-input-number v-model="form.sort" controls-position="right" :min="0" />
|
</el-form-item>
|
</el-col>
|
</el-row>
|
<el-row>
|
<el-col :span="12">
|
<el-form-item label="是否启用" prop="isEnable">
|
<el-switch v-model="form.isEnable"></el-switch>
|
</el-form-item>
|
</el-col>
|
</el-row>
|
</el-form>
|
<div slot="footer" class="dialog-footer">
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
<el-button @click="cancel">取 消</el-button>
|
</div>
|
</el-dialog>
|
</div>
|
</template>
|
|
<script>
|
import { listConfig, getConfig, delConfig, addConfig, updateConfig, listConfigExcludeChild } from "@/api/performance/staffCompetencyInspectItemConfig";
|
import Treeselect from "@riophae/vue-treeselect";
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
export default {
|
name: "StaffCompetencyInspectItemConfig",
|
components: { Treeselect },
|
data() {
|
return {
|
//表格高度
|
tableHeight:0,
|
// 遮罩层
|
loading: true,
|
// 显示搜索条件
|
showSearch: true,
|
// 表格树数据
|
configList: [],
|
// 部门树选项
|
configOptions: [],
|
// 弹出层标题
|
title: "",
|
// 是否显示弹出层
|
open: false,
|
// 是否展开,默认全部展开
|
isExpandAll: true,
|
// 重新渲染表格状态
|
refreshTable: true,
|
// 查询参数
|
queryParams: {
|
itemName: undefined
|
},
|
// 表单参数
|
form: {},
|
// 表单校验
|
rules: {
|
itemName: [
|
{ required: true, message: "项点名称不能为空", trigger: "blur" }
|
],
|
sort: [
|
{ required: true, message: "显示排序不能为空", trigger: "blur" }
|
]
|
}
|
};
|
},
|
created() {
|
this.getList();
|
this.calcTableHeight()
|
},
|
mounted() {
|
window.addEventListener('resize', this.calcTableHeight);
|
},
|
beforeDestroy() {
|
window.removeEventListener('resize', this.calcTableHeight);
|
},
|
methods: {
|
calcTableHeight(){
|
const innerHeight = window.innerHeight
|
const outerHeight = 36 + 51 + 97 + 20
|
this.tableHeight = innerHeight - outerHeight
|
},
|
/** 查询检验项点列表 */
|
getList() {
|
this.loading = true;
|
listConfig(this.queryParams).then(response => {
|
this.configList = this.handleTree(response.data, "id");
|
this.loading = false;
|
});
|
},
|
/** 转换检验项点数据结构 */
|
normalizer(node) {
|
if (node.children && !node.children.length) {
|
delete node.children;
|
}
|
return {
|
id: node.id,
|
label: node.itemName,
|
children: node.children
|
};
|
},
|
// 取消按钮
|
cancel() {
|
this.open = false;
|
this.reset();
|
},
|
// 表单重置
|
reset() {
|
this.form = {
|
id: undefined,
|
parentId: undefined,
|
itemName: undefined,
|
sort: undefined,
|
isEnable: true
|
};
|
this.resetForm("form");
|
},
|
/** 搜索按钮操作 */
|
handleQuery() {
|
this.getList();
|
},
|
/** 重置按钮操作 */
|
resetQuery() {
|
this.resetForm("queryForm");
|
this.handleQuery();
|
},
|
/** 新增按钮操作 */
|
handleAdd(row) {
|
this.reset();
|
if (row != undefined) {
|
this.form.parentId = row.id;
|
}
|
this.open = true;
|
this.title = "添加检验项点";
|
listConfig().then(response => {
|
this.configOptions = this.handleTree(response.data, "id");
|
this.configOptions = this.limitTreeDepth(this.configOptions, 2)
|
});
|
},
|
/** 展开/折叠操作 */
|
toggleExpandAll() {
|
this.refreshTable = false;
|
this.isExpandAll = !this.isExpandAll;
|
this.$nextTick(() => {
|
this.refreshTable = true;
|
});
|
},
|
/** 修改按钮操作 */
|
handleUpdate(row) {
|
this.reset();
|
getConfig(row.id).then(response => {
|
this.form = response.data;
|
this.open = true;
|
this.title = "修改检验项点";
|
listConfigExcludeChild(row.id).then(response => {
|
this.configOptions = this.handleTree(response.data, "id");
|
if (this.configOptions.length == 0) {
|
const noResultsOptions = { id: this.form.parentId, itemName: this.form.parentName, children: [] };
|
this.configOptions.push(noResultsOptions);
|
}
|
this.configOptions = this.limitTreeDepth(this.configOptions, 2)
|
});
|
});
|
},
|
/** 提交按钮 */
|
submitForm: function () {
|
this.$refs["form"].validate(valid => {
|
if (valid) {
|
if (this.form.id != undefined) {
|
updateConfig(this.form).then(response => {
|
this.$modal.msgSuccess("修改成功");
|
this.open = false;
|
this.getList();
|
this.$emit("refresh");
|
});
|
} else {
|
addConfig(this.form).then(response => {
|
this.$modal.msgSuccess("新增成功");
|
this.open = false;
|
this.getList();
|
this.$emit("refresh");
|
});
|
}
|
}
|
});
|
},
|
/** 删除按钮操作 */
|
handleDelete(row) {
|
this.$modal.confirm('是否确认删除名称为"' + row.itemName + '"的数据项?').then(function () {
|
return delConfig(row.id);
|
}).then(() => {
|
this.getList();
|
this.$modal.msgSuccess("删除成功");
|
this.$emit("refresh");
|
}).catch(() => { });
|
},
|
// 递归函数,用于限制树的深度
|
limitTreeDepth(options, maxDepth, currentDepth = 1) {
|
return options.map(option => {
|
const newOption = { ...option };
|
if (currentDepth < maxDepth && option.children) {
|
// 如果当前深度小于最大深度且存在子节点,则递归处理子节点
|
newOption.children = this.limitTreeDepth(option.children, maxDepth, currentDepth + 1);
|
} else {
|
// 否则移除子节点
|
delete newOption.children;
|
}
|
return newOption;
|
});
|
}
|
}
|
};
|
</script>
|