|
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
<el-form-item label="经验编号" prop="experienceCode">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.experienceCode"
|
|
|
|
|
placeholder="请输入经验编号"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="设备类型" prop="deviceTypeId">
|
|
|
|
|
<el-select v-model="queryParams.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="maintStationId">
|
|
|
|
|
<el-select v-model="queryParams.maintStationId" placeholder="请选择保养部位">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in stationList"
|
|
|
|
|
:key="item.maintStationId"
|
|
|
|
|
:label="item.maintStationCode"
|
|
|
|
|
:value="item.maintStationId">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</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:konwledgeMaint: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:konwledgeMaint: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:konwledgeMaint: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:konwledgeMaint:export']"
|
|
|
|
|
>导出</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="konwledgeMaintList" @selection-change="handleSelectionChange">
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
<el-table-column label="经验编号" align="center" prop="experienceCode" />
|
|
|
|
|
<!-- <el-table-column label="设备类型ID,关联dms_base_device_type的device_type_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="保养部位,关联dms_base_maint_station的maint_station_id" align="center" prop="maintStationId" />-->
|
|
|
|
|
<el-table-column label="保养部位" align="center" prop="maintStationId" >
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span
|
|
|
|
|
v-for="(item, index) in stationList"
|
|
|
|
|
:key="index"
|
|
|
|
|
:value="item.stationList"
|
|
|
|
|
v-if="scope.row.maintStationId == item.maintStationId"
|
|
|
|
|
>
|
|
|
|
|
{{ item.maintStationCode }}
|
|
|
|
|
</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="保养标准" align="center" prop="maintProtocol" />
|
|
|
|
|
<el-table-column label="操作描述" align="center" prop="operationDescription" />
|
|
|
|
|
<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:konwledgeMaint:edit']"
|
|
|
|
|
>修改</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
icon="el-icon-delete"
|
|
|
|
|
@click="handleDelete(scope.row)"
|
|
|
|
|
v-hasPermi="['dms:konwledgeMaint: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="经验编号" prop="experienceCode">
|
|
|
|
|
<el-input v-model="form.experienceCode" placeholder="请输入经验编号" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- <el-form-item label="设备类型ID,关联dms_base_device_type的device_type_id" prop="deviceTypeId">-->
|
|
|
|
|
<!-- <el-input v-model="form.deviceTypeId" placeholder="请输入设备类型ID,关联dms_base_device_type的device_type_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="maintStationId">
|
|
|
|
|
<!-- <el-input v-model="form.maintStationId" placeholder="请输入保养部位,关联dms_base_maint_station的maint_station_id" />-->
|
|
|
|
|
<el-select v-model="form.maintStationId" placeholder="请选择保养部位">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in stationList"
|
|
|
|
|
:key="item.maintStationId"
|
|
|
|
|
:label="item.maintStationCode"
|
|
|
|
|
:value="item.maintStationId">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="保养标准" prop="maintProtocol">
|
|
|
|
|
<!-- <el-input v-model="form.maintProtocol" placeholder="请输入保养标准" />-->
|
|
|
|
|
<el-select v-model="form.maintProtocol" placeholder="请选择保养标准">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in standardList"
|
|
|
|
|
:key="item.maintProtocol"
|
|
|
|
|
:label="item.maintStationCode"
|
|
|
|
|
:value="item.maintProtocol">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="操作描述" prop="operationDescription">
|
|
|
|
|
<el-input v-model="form.operationDescription" placeholder="请输入操作描述" />
|
|
|
|
|
</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 { listKonwledgeMaint, getKonwledgeMaint, delKonwledgeMaint, addKonwledgeMaint, updateKonwledgeMaint } from "@/api/dms/konwledgeMaint";
|
|
|
|
|
import { listDevicetype } from '@/api/dms/devicetype'
|
|
|
|
|
import { listStation } from '@/api/dms/station'
|
|
|
|
|
import { listStandard } from '@/api/dms/standard'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "KonwledgeMaint",
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
//保养标准
|
|
|
|
|
standardList:[],
|
|
|
|
|
//保养部位
|
|
|
|
|
stationList:[],
|
|
|
|
|
//设备类型
|
|
|
|
|
devicetypeList:[],
|
|
|
|
|
// 遮罩层
|
|
|
|
|
loading: true,
|
|
|
|
|
// 选中数组
|
|
|
|
|
ids: [],
|
|
|
|
|
// 非单个禁用
|
|
|
|
|
single: true,
|
|
|
|
|
// 非多个禁用
|
|
|
|
|
multiple: true,
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
showSearch: true,
|
|
|
|
|
// 总条数
|
|
|
|
|
total: 0,
|
|
|
|
|
// 保养知识库表格数据
|
|
|
|
|
konwledgeMaintList: [],
|
|
|
|
|
// 弹出层标题
|
|
|
|
|
title: "",
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
open: false,
|
|
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
experienceCode: null,
|
|
|
|
|
deviceTypeId: null,
|
|
|
|
|
maintStationId: null,
|
|
|
|
|
maintProtocol: null,
|
|
|
|
|
operationDescription: null,
|
|
|
|
|
isFlag: null,
|
|
|
|
|
},
|
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
|
|
|
|
// 表单校验
|
|
|
|
|
rules: {
|
|
|
|
|
experienceCode: [
|
|
|
|
|
{ required: true, message: "经验编号不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
deviceTypeId: [
|
|
|
|
|
{ required: true, message: "设备类型不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
maintStationId: [
|
|
|
|
|
{ required: true, message: "保养部位不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
maintProtocol: [
|
|
|
|
|
{ required: true, message: "保养标准不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getDeviceType();
|
|
|
|
|
this.getStation();
|
|
|
|
|
this.getStandard();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
/** 查询保养标准信息列表 */
|
|
|
|
|
getStandard() {
|
|
|
|
|
listStandard(this.queryParams).then(response => {
|
|
|
|
|
this.standardList = response.rows;
|
|
|
|
|
console.log(this.standardList)
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 查询保养部位信息列表 */
|
|
|
|
|
getStation() {
|
|
|
|
|
listStation(this.queryParams).then(response => {
|
|
|
|
|
this.stationList = response.rows;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 查询设备类型信息列表 */
|
|
|
|
|
getDeviceType() {
|
|
|
|
|
listDevicetype(this.queryParams).then(response => {
|
|
|
|
|
this.devicetypeList = this.handleTree(response.data, "deviceTypeId", "parentId");
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 查询保养知识库列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
listKonwledgeMaint(this.queryParams).then(response => {
|
|
|
|
|
this.konwledgeMaintList = response.rows;
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 取消按钮
|
|
|
|
|
cancel() {
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.reset();
|
|
|
|
|
},
|
|
|
|
|
// 表单重置
|
|
|
|
|
reset() {
|
|
|
|
|
this.form = {
|
|
|
|
|
knowledgeMaintId: null,
|
|
|
|
|
experienceCode: null,
|
|
|
|
|
deviceTypeId: null,
|
|
|
|
|
maintStationId: null,
|
|
|
|
|
maintProtocol: null,
|
|
|
|
|
operationDescription: null,
|
|
|
|
|
isFlag: null,
|
|
|
|
|
remark: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
createTime: null,
|
|
|
|
|
updateBy: null,
|
|
|
|
|
updateTime: null
|
|
|
|
|
};
|
|
|
|
|
this.resetForm("form");
|
|
|
|
|
},
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
handleQuery() {
|
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
},
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
this.ids = selection.map(item => item.knowledgeMaintId)
|
|
|
|
|
this.codes = selection.map(item => item.experienceCode)
|
|
|
|
|
this.single = selection.length!==1
|
|
|
|
|
this.multiple = !selection.length
|
|
|
|
|
},
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
handleAdd() {
|
|
|
|
|
this.reset();
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = "添加保养知识库";
|
|
|
|
|
},
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
handleUpdate(row) {
|
|
|
|
|
this.reset();
|
|
|
|
|
const knowledgeMaintId = row.knowledgeMaintId || this.ids
|
|
|
|
|
getKonwledgeMaint(knowledgeMaintId).then(response => {
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = "修改保养知识库";
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
submitForm() {
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.form.knowledgeMaintId != null) {
|
|
|
|
|
updateKonwledgeMaint(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
addKonwledgeMaint(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
handleDelete(row) {
|
|
|
|
|
const knowledgeMaintIds = row.knowledgeMaintId || this.ids;
|
|
|
|
|
const knowledgeMaintCodes = row.experienceCode || this.codes;
|
|
|
|
|
this.$modal.confirm('是否确认删除保养知识库编号为"' + knowledgeMaintCodes + '"的数据项?').then(function() {
|
|
|
|
|
return delKonwledgeMaint(knowledgeMaintIds);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
},
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
handleExport() {
|
|
|
|
|
this.download('dms/konwledgeMaint/export', {
|
|
|
|
|
...this.queryParams
|
|
|
|
|
}, `konwledgeMaint_${new Date().getTime()}.xlsx`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|