You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

485 lines
16 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small"
:inline="true" v-show="showSearch" label-width="100px">
<el-form-item label="设备类型ID" prop="deviceTypeId">
<el-input
v-model="queryParams.deviceTypeId"
placeholder="请输入设备类型ID"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="设备类型名称" prop="TypeName">
<el-input
v-model="queryParams.TypeName"
placeholder="请输入设备类型名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<!-- <el-form-item label="部位编号" prop="maintStationCode">-->
<!-- <el-input-->
<!-- v-model="queryParams.maintStationCode"-->
<!-- placeholder="请输入部位编号"-->
<!-- clearable-->
<!-- @keyup.enter.native="handleQuery"-->
<!-- />-->
<!-- </el-form-item>-->
<el-form-item label="保养标准" prop="protocolCode">
<el-input
v-model="queryParams.protocolCode"
placeholder="请输入保养标准"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<!-- <el-form-item label="是否标识1-是2-否" prop="isFlag">-->
<!-- <el-input-->
<!-- v-model="queryParams.isFlag"-->
<!-- placeholder="请输入是否标识1-是2-否"-->
<!-- clearable-->
<!-- @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"
v-hasPermi="['dms:station:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['dms:station:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['dms:station:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['dms:station:export']"
>导出</el-button>
</el-col>
</el-row>
<el-table v-loading="loading" :data="stationList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="主键标识" align="center" prop="maintStationId" />-->
<el-table-column label="设备类型ID" align="center" prop="deviceTypeId" />
<el-table-column label="设备类型" align="center" prop="deviceTypeId" >
<template slot-scope="scope">
<span
v-for="(item, index) in devicetypeList"
:key="index"
:value="item.devicetypeList"
v-if="scope.row.deviceTypeId == item.deviceTypeId"
>
{{ item.typeName }}
</span>
</template>
</el-table-column>
<el-table-column label="部位编号" align="center" prop="maintStationCode" />
<!-- <el-table-column label="保养标准" align="center" prop="protocolCode" />-->
<el-table-column label="标准编号" align="center" prop="protocolCode" />
<!-- //如果想显示保养标准可以用以下被注释掉的部分v-for="(item, index)那部分-->
<!-- <el-table-column label="保养标准" align="center">
<template v-slot:default="scope">
<template v-for="(item, index) in standardList">
<span :key="index"
v-if="scope.row.protocolCode === item.maintStandardCode">
{{ item.maintProtocol }}
</span>
</template>
</template>
</el-table-column>-->
<!-- <el-table-column label="保养标准" align="center" prop="protocolCode" >-->
<!-- <template slot-scope="scope">-->
<!-- <span-->
<!-- v-for="(item, index) in standardList"-->
<!-- :key="index"-->
<!-- :value="item.standardList"-->
<!-- v-if="scope.row.maintStandardCode == item.maintStandardCode"-->
<!-- >-->
<!-- {{ item.maintProtocol }}-->
<!-- </span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- <el-table-column label="是否标识1-是2-否" align="center" prop="isFlag" />-->
<el-table-column label="备注" align="center" prop="remark" />
<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)"
v-hasPermi="['dms:station:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['dms:station:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改保养部位信息对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<!-- <el-form-item label="设备类型ID" prop="deviceTypeId">-->
<!-- <el-input v-model="form.deviceTypeId" placeholder="请输入设备类型ID" />-->
<!-- </el-form-item>-->
<el-form-item label="设备类型" prop="deviceTypeId" >
<el-select v-model="form.deviceTypeId" placeholder="请输入设备类型">
<el-option
v-for="item in devicetypeList"
:key="item.deviceTypeId"
:label="item.typeName"
:value="item.deviceTypeId">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="部位编号" prop="maintStationCode">
<el-input v-model="form.maintStationCode" placeholder="请输入部位编号" />
</el-form-item>
<!-- <el-form-item label="保养标准" prop="protocolCode">-->
<!-- <el-input v-model="form.protocolCode" placeholder="请输入保养标准" />-->
<!-- </el-form-item>-->
<el-form-item label="保养标准" prop="protocolCode" >
<el-select v-model="form.protocolCode" placeholder="请输入保养标准"
reserve-keyword>
<el-option
v-for="item in standardList"
:key="item.maintStandardCode"
:label="item.maintProtocol"
:value="item.maintStandardCode">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="保养项目">
<el-checkbox v-model="menuNodeAll" @change="handleCheckedTreeNodeAll($event, 'menu')">/</el-checkbox>
<div class="scrollable-tree-container">
<el-tree
class="tree-border"
:data="baseStationProjectList"
show-checkbox
ref="menu"
node-key="maintProjectId"
empty-text="加载中,请稍候"
:props="{label:'maintProjectName'}"
></el-tree>
</div>
</el-form-item>
<!-- <el-form-item label="是否标识1-是2-否" prop="isFlag">-->
<!-- <el-input v-model="form.isFlag" placeholder="请输入是否标识1-是2-否" />-->
<!-- </el-form-item>-->
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
</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 { listStation, getStation, delStation, addStation, updateStation } from "@/api/dms/station";
import { listDevicetype } from '@/api/dms/devicetype'
import {getMaintStandardlist} from '@/api/dms/standard'
import {projectMenu, projectMenuByStaion} from "@/api/dms/dmsBaseMaintProject";
export default {
name: "Station",
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 保养部位信息表格数据
stationList: [],
devicetypeList:[],
standardList:[],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
deviceTypeId: null,
maintStandardCode:null,
maintProtocol:null,
TypeName:null,
maintStationCode: null,
protocolCode: null,
isFlag: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
deviceTypeId: [
{ required: true, message: "设备类型ID不能为空", trigger: "blur" }
],
// isFlag: [
// { required: true, message: "是否标识1-是2-否不能为空", trigger: "blur" }
// ],
},
menuNodeAll: false,
baseStationProjectList: [],
};
},
created() {
this.getList();
this.getDeviceTypeList();
this.getStandard();
/* this.getStaionProjetList();*/
},
methods: {
/** 查询保养标准信息列表 */
getStandard() {
getMaintStandardlist({}).then(response => {
this.standardList = response.data;
});
},
/** 查询设备类型信息列表 */
getDeviceTypeList() {
listDevicetype(this.queryParams).then(response => {
this.devicetypeList = response.data;
// console.log(this.devicetypeList)
// this.handleTree(response.data, "deviceTypeId", "parentId");
});
},
/** 查询保养部位信息列表 */
getList() {
this.loading = true;
listStation(this.queryParams).then(response => {
this.stationList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
if (this.$refs.menu != undefined) {
this.$refs.menu.setCheckedKeys([]);
}
this.menuNodeAll = false,
this.form = {
maintStationId: null,
deviceTypeId: null,
maintStandardCode:null,
maintProtocol:null,
TypeName: null,
maintStationCode: null,
protocolCode: null,
isFlag: null,
remark: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
baseStationProjectList: [],
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.maintStationId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.getStaionProjetList() ;
this.title = "添加保养部位信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const maintStationId = row.maintStationId || this.ids
this.getStaionProjetList();
getStation(maintStationId).then(response => {
/* this.getStaionProjetList();*/
this.form = response.data;
this.open = true;
this.$nextTick(() => {
projectMenuByStaion(maintStationId).then(res => {
let checkedKeys = res.data
checkedKeys.forEach((v) => {
console.log('v',v)
this.$nextTick(()=>{
this.$refs.menu.setChecked(v.maintProjectId, true ,false);
})
})
});
});
this.title = "修改保养部位信息";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.maintStationId != null) {
this.form.productIds = this.getMenuAllCheckedKeys();
updateStation(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
this.form.productIds = this.getMenuAllCheckedKeys();
addStation(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const maintStationIds = row.maintStationId || this.ids;
const maintStationCode = row.maintStationCode || this.ids;
this.$modal.confirm('是否确认删除保养部位信息编号为"' + maintStationCode + '"的数据项?').then(function() {
return delStation(maintStationIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('dms/station/export', {
...this.queryParams
}, `station_${new Date().getTime()}.xlsx`)
},
// 树权限(全选/全不选)
handleCheckedTreeNodeAll(value, type) {
if (type == 'menu') {
this.$refs.menu.setCheckedNodes(value ? this.baseStationProjectList: []);
}
},
/** 查询保养部位关联项目信息列表 */
getStaionProjetList() {
projectMenu({}).then(response => {
this.baseStationProjectList = response.data;
console.log(this.baseStationProjectList)
});
},
/** 根据部位id查询菜单 */
getStaionProjetListByStionId(maintStationId) {
return projectMenuByStaion(maintStationId).then(response => {
this.baseStationProjectList = response.data;
console.log(this.baseStationProjectList)
});
},
// 所有菜单节点数据
getMenuAllCheckedKeys() {
// 目前被选中的菜单节点
let checkedKeys = this.$refs.menu.getCheckedKeys();
return checkedKeys;
},
// 所有部门节点数据
getDeptAllCheckedKeys() {
// 目前被选中的部门节点
let checkedKeys = this.$refs.dept.getCheckedKeys();
// 半选中的部门节点
let halfCheckedKeys = this.$refs.dept.getHalfCheckedKeys();
checkedKeys.unshift.apply(checkedKeys, halfCheckedKeys);
return checkedKeys;
},
}
};
</script>
<!--添加或修改保养部位信息对话框中保养标准的容器以便于添加滚动条功能-->
<style scoped>
.scrollable-tree-container {
width: 100%;
height: 200px;
overflow: auto; /* 当内容超出设定高度时显示滚动条 */
border: 1px solid #dcdcdc; /* 可选:边框样式 */
padding: 5px; /* 可选:内部填充 */
}
</style>