四个页面 故障信息
parent
77023c6a19
commit
10ff65c6c0
@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询故障描述列表
|
||||
export function listFaultDescription(query) {
|
||||
return request({
|
||||
url: '/device/faultDescription/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
// 查询故障描述详细
|
||||
export function getFaultDescription(faultId) {
|
||||
return request({
|
||||
url: '/device/faultDescription/' + faultId,
|
||||
method: 'get'
|
||||
});
|
||||
}
|
||||
|
||||
// 新增故障描述
|
||||
export function addFaultDescription(data) {
|
||||
return request({
|
||||
url: '/device/faultDescription',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
}
|
||||
|
||||
// 修改故障描述
|
||||
export function updateFaultDescription(data) {
|
||||
return request({
|
||||
url: '/device/faultDescription',
|
||||
method: 'put',
|
||||
data: data
|
||||
});
|
||||
}
|
||||
|
||||
// 删除故障描述
|
||||
export function delFaultDescription(faultId) {
|
||||
return request({
|
||||
url: '/device/faultDescription/' + faultId,
|
||||
method: 'delete'
|
||||
});
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询故障维修措施列表
|
||||
export function listFaultMeasures(query) {
|
||||
return request({
|
||||
url: '/device/faultMeasures/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
// 查询故障维修措施详细
|
||||
export function getFaultMeasures(faultId) {
|
||||
return request({
|
||||
url: '/device/faultMeasures/' + faultId,
|
||||
method: 'get'
|
||||
});
|
||||
}
|
||||
|
||||
// 新增故障维修措施
|
||||
export function addFaultMeasures(data) {
|
||||
return request({
|
||||
url: '/device/faultMeasures',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
}
|
||||
|
||||
// 修改故障维修措施
|
||||
export function updateFaultMeasures(data) {
|
||||
return request({
|
||||
url: '/device/faultMeasures',
|
||||
method: 'put',
|
||||
data: data
|
||||
});
|
||||
}
|
||||
|
||||
// 删除故障维修措施
|
||||
export function delFaultMeasures(faultId) {
|
||||
return request({
|
||||
url: '/device/faultMeasures/' + faultId,
|
||||
method: 'delete'
|
||||
});
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询故障原因列表
|
||||
export function listFaultReason(query) {
|
||||
return request({
|
||||
url: '/device/faultReason/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
// 查询故障原因详细
|
||||
export function getFaultReason(faultId) {
|
||||
return request({
|
||||
url: '/device/faultReason/' + faultId,
|
||||
method: 'get'
|
||||
});
|
||||
}
|
||||
|
||||
// 新增故障原因
|
||||
export function addFaultReason(data) {
|
||||
return request({
|
||||
url: '/device/faultReason',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
}
|
||||
|
||||
// 修改故障原因
|
||||
export function updateFaultReason(data) {
|
||||
return request({
|
||||
url: '/device/faultReason',
|
||||
method: 'put',
|
||||
data: data
|
||||
});
|
||||
}
|
||||
|
||||
// 删除故障原因
|
||||
export function delFaultReason(faultId) {
|
||||
return request({
|
||||
url: '/device/faultReason/' + faultId,
|
||||
method: 'delete'
|
||||
});
|
||||
}
|
@ -0,0 +1,112 @@
|
||||
<template>
|
||||
|
||||
<el-tabs type="border-card">
|
||||
<el-tab-pane label="故障类型" >
|
||||
<ItemFaultType></ItemFaultType>
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="故障描述" >
|
||||
<ItemFaultDescription></ItemFaultDescription>
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="故障原因" >
|
||||
<ItemFaultReason></ItemFaultReason>
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="维修措施" >
|
||||
<ItemFaultMeasures></ItemFaultMeasures>
|
||||
</el-tab-pane>
|
||||
</el-tabs>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ItemFaultType from "./itemFaultType.vue";
|
||||
import ItemFaultReason from "./itemFaultReason.vue";
|
||||
import ItemFaultDescription from "./itemFaultDescription.vue";
|
||||
import ItemFaultMeasures from "./itemFaultMeasures.vue";
|
||||
|
||||
export default {
|
||||
name: "FaultInformation",
|
||||
components: { ItemFaultType , ItemFaultReason , ItemFaultDescription , ItemFaultMeasures },
|
||||
data() {
|
||||
return {
|
||||
// 日期范围选择快捷
|
||||
pickerOptions: {
|
||||
shortcuts: [{
|
||||
text: '最近一周',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}, {
|
||||
text: '最近一个月',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}, {
|
||||
text: '最近三个月',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}]
|
||||
},
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 故障类型维护表格数据
|
||||
faultTypeList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
faultCode: null,
|
||||
faultType: null,
|
||||
faultSubclass: null,
|
||||
faultRemark: null,
|
||||
factoryCode: null,
|
||||
attr1: null,
|
||||
attr2: null,
|
||||
attr3: null,
|
||||
delFlag: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
createTimeArray: [],
|
||||
updateTimeArray: [],
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
|
||||
},
|
||||
methods: {
|
||||
|
||||
|
||||
}
|
||||
};
|
||||
</script>
|
@ -0,0 +1,444 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="98px">
|
||||
<el-form-item label-width="100px" label="故障描述编码" prop="faultCode">
|
||||
<el-input
|
||||
v-model="queryParams.faultCode"
|
||||
placeholder="请输入故障描述编码"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障描述类型" prop="faultType">
|
||||
<el-select v-model="queryParams.faultType" placeholder="请选择故障描述类型" clearable>
|
||||
<el-option
|
||||
v-for="dict in dict.type.device_fault_type"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障描述" prop="faultSubclass">
|
||||
<el-input
|
||||
v-model="queryParams.faultSubclass"
|
||||
placeholder="请输入故障描述"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="创建人" prop="createBy">
|
||||
<el-input
|
||||
class="my-select-input"
|
||||
v-model="queryParams.createBy"
|
||||
placeholder="请输入创建人"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="创建时间" prop="createTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.createTimeArray"
|
||||
type="daterange"
|
||||
align="right"
|
||||
unlink-panels
|
||||
range-separator="至"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
value-format="yyyy-MM-dd"
|
||||
:picker-options="pickerOptions">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="更新人" prop="updateBy">
|
||||
<el-input
|
||||
class="my-select-input"
|
||||
v-model="queryParams.updateBy"
|
||||
placeholder="请输入更新人"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="更新时间" prop="updateTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.updateTimeArray"
|
||||
type="daterange"
|
||||
align="right"
|
||||
unlink-panels
|
||||
range-separator="至"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
value-format="yyyy-MM-dd"
|
||||
:picker-options="pickerOptions">
|
||||
</el-date-picker>
|
||||
</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="['device:faultDescription: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="['device:faultDescription: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="['device:faultDescriptionn: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="['device:faultDescription:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="faultList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column width="60" align="center" label="序号" type="index"></el-table-column>
|
||||
<el-table-column v-if="false" label="主键" align="center" prop="faultId" />
|
||||
<el-table-column width="150" label="故障描述编码" align="center" prop="faultCode" />
|
||||
<el-table-column width="150" label="故障描述类型" align="center" prop="faultType" >
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.device_fault_type" :value="scope.row.faultType"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column width="150" label="故障描述" align="center" prop="faultSubclass" />
|
||||
<el-table-column width="180" label="备注" align="center" prop="faultRemark" />
|
||||
<el-table-column width="100" label="创建人" align="center" prop="createBy" />
|
||||
<el-table-column width="180" label="创建时间" align="center" prop="createTime">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column width="100" label="更新人" align="center" prop="updateBy" />
|
||||
<el-table-column width="180" label="更新时间" align="center" prop="updateTime">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column width="180" label="操作" align="center" class-name="small-padding fixed-width" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['device:faultDescription:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['device:faultDescription: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 v-if="false" label="故障描述编码" prop="faultCode">
|
||||
<el-input v-model="form.faultCode" placeholder="请输入故障描述编码" style="width: 300px"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障描述" prop="faultType">
|
||||
<el-select v-model="form.faultType" placeholder="请选择故障描述" clearable style="width: 300px">
|
||||
<el-option
|
||||
v-for="dict in dict.type.device_fault_type"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障子类" prop="faultSubclass">
|
||||
<el-input v-model="form.faultSubclass" placeholder="请输入故障子类" style="width: 300px"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="faultRemark">
|
||||
<el-input v-model="form.faultRemark" placeholder="请输入备注" style="width: 300px"/>
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="工厂编码" prop="factoryCode">
|
||||
<el-input v-model="form.factoryCode" placeholder="请输入工厂编码" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="备用字段1" prop="attr1">
|
||||
<el-input v-model="form.attr1" placeholder="请输入备用字段1" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="备用字段2" prop="attr2">
|
||||
<el-input v-model="form.attr2" placeholder="请输入备用字段2" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="备用字段3" prop="attr3">
|
||||
<el-input v-model="form.attr3" placeholder="请输入备用字段3" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="删除标志" prop="delFlag">
|
||||
<el-input v-model="form.delFlag" 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 { listFaultDescription, getFaultDescription, delFaultDescription, addFaultDescription, updateFaultDescription } from "@/api/device/faultDescription";
|
||||
|
||||
export default {
|
||||
name: "FaultType",
|
||||
dicts: ['device_fault_description'],
|
||||
data() {
|
||||
return {
|
||||
//故障类别
|
||||
faultCategory : null,
|
||||
// 日期范围选择快捷
|
||||
pickerOptions: {
|
||||
shortcuts: [{
|
||||
text: '最近一周',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}, {
|
||||
text: '最近一个月',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}, {
|
||||
text: '最近三个月',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}]
|
||||
},
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 故障描述维护表格数据
|
||||
faultList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
//故障类别
|
||||
faultCategory: null,
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
faultCode: null,
|
||||
faultType: null,
|
||||
faultSubclass: null,
|
||||
faultRemark: null,
|
||||
factoryCode: null,
|
||||
attr1: null,
|
||||
attr2: null,
|
||||
attr3: null,
|
||||
delFlag: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
createTimeArray: [],
|
||||
updateTimeArray: [],
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询故障描述维护列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
this.queryParams.faultCategory = "des";
|
||||
listFaultDescription(this.queryParams).then(response => {
|
||||
this.faultList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
faultId: null,
|
||||
faultCode: null,
|
||||
faultType: null,
|
||||
faultSubclass: null,
|
||||
faultRemark: null,
|
||||
factoryCode: null,
|
||||
attr1: null,
|
||||
attr2: null,
|
||||
attr3: null,
|
||||
delFlag: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
// 重置日期范围
|
||||
this.queryParams.createTimeArray = [];
|
||||
this.queryParams.updateTimeArray = [];
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.faultId)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加故障描述维护";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const faultId = row.faultId || this.ids
|
||||
getFaultDescription(faultId).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改故障描述维护";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.faultId != null) {
|
||||
updateFaultDescription(this.form).then(response => {
|
||||
if (response.code != 500) {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
addFaultDescription(this.form).then(response => {
|
||||
if (response.code != 500) {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const faultIds = row.faultId || this.ids;
|
||||
var faultCodes = '';
|
||||
|
||||
// 处理信息
|
||||
for (let i = 0; i < this.faultList.length; i++) {
|
||||
for (let j = 0; j < faultIds.length; j++) {
|
||||
if (faultIds[j] == this.faultList[i].faultId) {
|
||||
faultCodes = faultCodes + this.faultList[i].faultCode + ',';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (faultCodes == '') {
|
||||
for (let i = 0; i < this.faultList.length; i++) {
|
||||
if (faultIds == this.faultList[i].faultId) {
|
||||
faultCodes = this.faultList[i].faultCode;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.$modal.confirm('是否确认删除故障描述维护编号为"' + faultCodes + '"的数据项?').then(function() {
|
||||
return delFaultDescription(faultIds);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('device/faultDescription/export', {
|
||||
...this.queryParams
|
||||
}, `faultType_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
@ -0,0 +1,430 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="98px">
|
||||
<el-form-item label-width="100px" label="故障措施编码" prop="faultCode">
|
||||
<el-input
|
||||
v-model="queryParams.faultCode"
|
||||
placeholder="请输入故障措施编码"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障措施类型" prop="faultType">
|
||||
<el-select v-model="queryParams.faultType" placeholder="请选择故障措施类型" clearable>
|
||||
<el-option
|
||||
v-for="dict in dict.type.device_fault_measures"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障措施" prop="faultSubclass">
|
||||
<el-input
|
||||
v-model="queryParams.faultSubclass"
|
||||
placeholder="请输入故障措施"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="更新人" prop="updateBy">
|
||||
<el-input
|
||||
class="my-select-input"
|
||||
v-model="queryParams.updateBy"
|
||||
placeholder="请输入更新人"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="创建时间" prop="createTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.createTimeArray"
|
||||
type="daterange"
|
||||
align="right"
|
||||
unlink-panels
|
||||
range-separator="至"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
value-format="yyyy-MM-dd"
|
||||
:picker-options="pickerOptions">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="更新时间" prop="updateTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.updateTimeArray"
|
||||
type="daterange"
|
||||
align="right"
|
||||
unlink-panels
|
||||
range-separator="至"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
value-format="yyyy-MM-dd"
|
||||
:picker-options="pickerOptions">
|
||||
</el-date-picker>
|
||||
</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="['device:faultMeasures: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="['device:faultMeasures: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="['device:faultMeasures: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="['device:faultMeasures:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="faultList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column width="60" align="center" label="序号" type="index"></el-table-column>
|
||||
<el-table-column v-if="false" label="主键" align="center" prop="faultId" />
|
||||
<el-table-column width="150" label="故障措施编码" align="center" prop="faultCode" />
|
||||
<el-table-column width="150" label="故障措施类型" align="center" prop="faultType" >
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.device_fault_measures" :value="scope.row.faultType"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column width="150" label="故障措施" align="center" prop="faultSubclass" />
|
||||
<el-table-column width="180" label="备注" align="center" prop="faultRemark" />
|
||||
<el-table-column width="100" label="创建人" align="center" prop="createBy" />
|
||||
<el-table-column width="180" label="创建时间" align="center" prop="createTime">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column width="100" label="更新人" align="center" prop="updateBy" />
|
||||
<el-table-column width="180" label="更新时间" align="center" prop="updateTime">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column width="180" label="操作" align="center" class-name="small-padding fixed-width" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['device:faultMeasures:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['device:faultMeasures: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 v-if="false" label="故障措施编码" prop="faultCode">
|
||||
<el-input v-model="form.faultCode" placeholder="请输入故障措施编码" style="width: 300px"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障措施" prop="faultType">
|
||||
<el-select v-model="form.faultType" placeholder="请选择故障措施" clearable style="width: 300px">
|
||||
<el-option
|
||||
v-for="dict in dict.type.device_fault_measures"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障子类" prop="faultSubclass">
|
||||
<el-input v-model="form.faultSubclass" placeholder="请输入故障子类" style="width: 300px"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="faultRemark">
|
||||
<el-input v-model="form.faultRemark" placeholder="请输入备注" style="width: 300px"/>
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="工厂编码" prop="factoryCode">
|
||||
<el-input v-model="form.factoryCode" placeholder="请输入工厂编码" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="备用字段1" prop="attr1">
|
||||
<el-input v-model="form.attr1" placeholder="请输入备用字段1" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="备用字段2" prop="attr2">
|
||||
<el-input v-model="form.attr2" placeholder="请输入备用字段2" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="备用字段3" prop="attr3">
|
||||
<el-input v-model="form.attr3" placeholder="请输入备用字段3" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="删除标志" prop="delFlag">
|
||||
<el-input v-model="form.delFlag" 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 { listFaultMeasures, getFaultMeasures, delFaultMeasures, addFaultMeasures, updateFaultMeasures } from "@/api/device/faultMeasures";
|
||||
|
||||
export default {
|
||||
name: "FaultType",
|
||||
dicts: ['device_fault_measures'],
|
||||
data() {
|
||||
return {
|
||||
// 日期范围选择快捷
|
||||
pickerOptions: {
|
||||
shortcuts: [{
|
||||
text: '最近一周',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}, {
|
||||
text: '最近一个月',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}, {
|
||||
text: '最近三个月',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}]
|
||||
},
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 故障措施维护表格数据
|
||||
faultList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
faultCode: null,
|
||||
faultType: null,
|
||||
faultSubclass: null,
|
||||
faultRemark: null,
|
||||
factoryCode: null,
|
||||
attr1: null,
|
||||
attr2: null,
|
||||
attr3: null,
|
||||
delFlag: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
createTimeArray: [],
|
||||
updateTimeArray: [],
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询故障措施维护列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listFaultMeasures(this.queryParams).then(response => {
|
||||
this.faultList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
faultId: null,
|
||||
faultCode: null,
|
||||
faultType: null,
|
||||
faultSubclass: null,
|
||||
faultRemark: null,
|
||||
factoryCode: null,
|
||||
attr1: null,
|
||||
attr2: null,
|
||||
attr3: null,
|
||||
delFlag: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
// 重置日期范围
|
||||
this.queryParams.createTimeArray = [];
|
||||
this.queryParams.updateTimeArray = [];
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.faultId)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加故障措施维护";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const faultId = row.faultId || this.ids
|
||||
getFaultMeasures(faultId).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改故障措施维护";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.faultId != null) {
|
||||
updateFaultMeasures(this.form).then(response => {
|
||||
if (response.code != 500) {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
addFaultMeasures(this.form).then(response => {
|
||||
if (response.code != 500) {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const faultIds = row.faultId || this.ids;
|
||||
var faultCodes = '';
|
||||
|
||||
// 处理信息
|
||||
for (let i = 0; i < this.faultList.length; i++) {
|
||||
for (let j = 0; j < faultIds.length; j++) {
|
||||
if (faultIds[j] == this.faultList[i].faultId) {
|
||||
faultCodes = faultCodes + this.faultList[i].faultCode + ',';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (faultCodes == '') {
|
||||
for (let i = 0; i < this.faultList.length; i++) {
|
||||
if (faultIds == this.faultList[i].faultId) {
|
||||
faultCodes = this.faultList[i].faultCode;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.$modal.confirm('是否确认删除故障措施维护编号为"' + faultCodes + '"的数据项?').then(function() {
|
||||
return delFaultMeasures(faultIds);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('device/faultMeasures/export', {
|
||||
...this.queryParams
|
||||
}, `faultType_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
@ -0,0 +1,444 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="98px">
|
||||
<el-form-item label="故障原因编码" prop="faultCode">
|
||||
<el-input
|
||||
style="width: 150px"
|
||||
v-model="queryParams.faultCode"
|
||||
placeholder="请输入编码"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障原因类型" prop="faultType">
|
||||
<el-select v-model="queryParams.faultType" placeholder="请选择原因类型" clearable style="width: 150px">
|
||||
<el-option
|
||||
v-for="dict in dict.type.device_fault_reason"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障原因" prop="faultSubclass" >
|
||||
<el-input
|
||||
v-model="queryParams.faultSubclass"
|
||||
placeholder="请输入故障原因"
|
||||
clearable
|
||||
style="width: 150px"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="创建人" prop="createBy" >
|
||||
<el-input
|
||||
class="my-select-input"
|
||||
v-model="queryParams.createBy"
|
||||
placeholder="请输入创建人"
|
||||
clearable
|
||||
style="width: 130px"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="更新人" prop="updateBy">
|
||||
<el-input
|
||||
class="my-select-input"
|
||||
v-model="queryParams.updateBy"
|
||||
placeholder="请输入更新人"
|
||||
clearable
|
||||
style="width: 130px"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="创建时间" prop="createTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.createTimeArray"
|
||||
type="daterange"
|
||||
align="right"
|
||||
unlink-panels
|
||||
range-separator="至"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
value-format="yyyy-MM-dd"
|
||||
:picker-options="pickerOptions">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="更新时间" prop="updateTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.updateTimeArray"
|
||||
type="daterange"
|
||||
align="right"
|
||||
unlink-panels
|
||||
range-separator="至"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
value-format="yyyy-MM-dd"
|
||||
:picker-options="pickerOptions">
|
||||
</el-date-picker>
|
||||
</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="['device:faultReason: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="['device:faultReason: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="['device:faultReason: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="['device:faultReason:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="faultList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column width="60" align="center" label="序号" type="index"></el-table-column>
|
||||
<el-table-column v-if="false" label="主键" align="center" prop="faultId" />
|
||||
<el-table-column width="150" label="故障原因编码" align="center" prop="faultCode" />
|
||||
<el-table-column width="150" label="故障原因类型" align="center" prop="faultType" >
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.device_fault_reason" :value="scope.row.faultType"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column width="200" label="故障原因" align="center" prop="faultSubclass" />
|
||||
<el-table-column width="180" label="备注" align="center" prop="faultRemark" />
|
||||
<el-table-column v-if="false" label="删除标志" align="center" prop="delFlag" />
|
||||
<el-table-column width="100" label="创建人" align="center" prop="createBy" />
|
||||
<el-table-column width="180" label="创建时间" align="center" prop="createTime">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column width="100" label="更新人" align="center" prop="updateBy" />
|
||||
<el-table-column width="180" label="更新时间" align="center" prop="updateTime">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column width="180" label="操作" align="center" class-name="small-padding fixed-width" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['device:faultReason:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['device:faultReason: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 v-if="false" label="故障原因编码" prop="faultCode">
|
||||
<el-input v-model="form.faultCode" placeholder="请输入故障原因编码" style="width: 300px"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障原因" prop="faultType">
|
||||
<el-select v-model="form.faultType" placeholder="请选择故障原因" clearable style="width: 300px">
|
||||
<el-option
|
||||
v-for="dict in dict.type.device_fault_reason"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障子类" prop="faultSubclass">
|
||||
<el-input v-model="form.faultSubclass" placeholder="请输入故障子类" style="width: 300px"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="faultRemark">
|
||||
<el-input v-model="form.faultRemark" placeholder="请输入备注" style="width: 300px"/>
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="工厂编码" prop="factoryCode">
|
||||
<el-input v-model="form.factoryCode" placeholder="请输入工厂编码" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="备用字段1" prop="attr1">
|
||||
<el-input v-model="form.attr1" placeholder="请输入备用字段1" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="备用字段2" prop="attr2">
|
||||
<el-input v-model="form.attr2" placeholder="请输入备用字段2" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="备用字段3" prop="attr3">
|
||||
<el-input v-model="form.attr3" placeholder="请输入备用字段3" />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="false" label="删除标志" prop="delFlag">
|
||||
<el-input v-model="form.delFlag" 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 { listFaultReason, getFaultReason, delFaultReason, addFaultReason, updateFaultReason } from "@/api/device/faultReason";
|
||||
|
||||
export default {
|
||||
name: "FaultType",
|
||||
dicts: ['device_fault_reason'],
|
||||
data() {
|
||||
return {
|
||||
// 日期范围选择快捷
|
||||
pickerOptions: {
|
||||
shortcuts: [{
|
||||
text: '最近一周',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}, {
|
||||
text: '最近一个月',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}, {
|
||||
text: '最近三个月',
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
||||
picker.$emit('pick', [start, end]);
|
||||
}
|
||||
}]
|
||||
},
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 故障原因维护表格数据
|
||||
faultList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
faultCode: null,
|
||||
faultType: null,
|
||||
faultSubclass: null,
|
||||
faultRemark: null,
|
||||
factoryCode: null,
|
||||
attr1: null,
|
||||
attr2: null,
|
||||
attr3: null,
|
||||
delFlag: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
createTimeArray: [],
|
||||
updateTimeArray: [],
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询故障原因维护列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listFaultReason(this.queryParams).then(response => {
|
||||
this.faultList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
faultId: null,
|
||||
faultCode: null,
|
||||
faultType: null,
|
||||
faultSubclass: null,
|
||||
faultRemark: null,
|
||||
factoryCode: null,
|
||||
attr1: null,
|
||||
attr2: null,
|
||||
attr3: null,
|
||||
delFlag: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
// 重置日期范围
|
||||
this.queryParams.createTimeArray = [];
|
||||
this.queryParams.updateTimeArray = [];
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.faultId)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加故障原因维护";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const faultId = row.faultId || this.ids
|
||||
getFaultReason(faultId).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改故障原因维护";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.faultId != null) {
|
||||
updateFaultReason(this.form).then(response => {
|
||||
if (response.code != 500) {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
addFaultReason(this.form).then(response => {
|
||||
if (response.code != 500) {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const faultIds = row.faultId || this.ids;
|
||||
var faultCodes = '';
|
||||
|
||||
// 处理信息
|
||||
for (let i = 0; i < this.faultList.length; i++) {
|
||||
for (let j = 0; j < faultIds.length; j++) {
|
||||
if (faultIds[j] == this.faultList[i].faultId) {
|
||||
faultCodes = faultCodes + this.faultList[i].faultCode + ',';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (faultCodes == '') {
|
||||
for (let i = 0; i < this.faultList.length; i++) {
|
||||
if (faultIds == this.faultList[i].faultId) {
|
||||
faultCodes = this.faultList[i].faultCode;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.$modal.confirm('是否确认删除故障原因维护编号为"' + faultCodes + '"的数据项?').then(function() {
|
||||
return delFaultReason(faultIds);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('device/faultReason/export', {
|
||||
...this.queryParams
|
||||
}, `faultType_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
@ -0,0 +1,229 @@
|
||||
<template>
|
||||
<el-dialog
|
||||
title="人员选择"
|
||||
v-if="showFlag"
|
||||
:visible.sync="showFlag"
|
||||
:modal="false"
|
||||
width="800px"
|
||||
center
|
||||
:before-close="cancel"
|
||||
>
|
||||
<el-row :gutter="20">
|
||||
<!--人员数据-->
|
||||
<el-col :span="24">
|
||||
<el-form
|
||||
:model="queryParams"
|
||||
ref="queryForm"
|
||||
size="small"
|
||||
:inline="true"
|
||||
v-show="showSearch"
|
||||
label-width="68px"
|
||||
>
|
||||
<el-form-item label="人员编码" prop="itemCode">
|
||||
<el-input
|
||||
v-model="queryParams.itemCode"
|
||||
placeholder="请输入人员编码"
|
||||
clearable
|
||||
style="width: 150px"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="人员名称" prop="itemName">
|
||||
<el-input
|
||||
v-model="queryParams.itemName"
|
||||
placeholder="请输入人员名称"
|
||||
clearable
|
||||
style="width: 150px"
|
||||
@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-table
|
||||
v-loading="loading"
|
||||
:data="itemList"
|
||||
@selection-change="handleSelectionChange"
|
||||
ref="multipleTable"
|
||||
>
|
||||
<el-table-column
|
||||
width="50"
|
||||
align="center"
|
||||
type="selection"
|
||||
></el-table-column>
|
||||
<!-- 序号 -->
|
||||
<el-table-column
|
||||
type="index"
|
||||
width="90"
|
||||
align="center"
|
||||
:index="indexMethod"
|
||||
label="序号"
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="人员编码"
|
||||
align="center"
|
||||
key="itemCode"
|
||||
prop="userName"
|
||||
v-if="columns[0].visible"
|
||||
>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="人员名称"
|
||||
align="left"
|
||||
key="itemName"
|
||||
prop="nickName"
|
||||
v-if="columns[1].visible"
|
||||
:show-overflow-tooltip="true"
|
||||
/>
|
||||
<el-table-column
|
||||
label="人员联系方式"
|
||||
align="left"
|
||||
prop="phonenumber"
|
||||
v-if="columns[2].visible"
|
||||
:show-overflow-tooltip="true"
|
||||
/>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm" :disabled="multiple"
|
||||
>确 定</el-button
|
||||
>
|
||||
<el-button @click="cancel">返 回</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getRepairPersonList } from "@/api/device/faultReport";
|
||||
import { Message } from "element-ui";
|
||||
|
||||
export default {
|
||||
name: "MdItemSingle",
|
||||
data() {
|
||||
return {
|
||||
treeData1: [],
|
||||
showFlag: false,
|
||||
// 选中数组
|
||||
selectedItemId: undefined,
|
||||
selectedRows: undefined,
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 人员表格数据
|
||||
itemList: null,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
itemName: null,
|
||||
itemCodeGet: "",
|
||||
itemCode: null,
|
||||
nickName: null,
|
||||
userName: null,
|
||||
},
|
||||
// 列信息
|
||||
columns: [
|
||||
{ key: 0, label: `人员编码`, visible: true },
|
||||
{ key: 1, label: `人员名称`, visible: true },
|
||||
{ key: 1, label: `联系方式`, visible: true },
|
||||
],
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
|
||||
methods: {
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.showFlag = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
itemId: null,
|
||||
itemCode: this.processId,
|
||||
itemType: null,
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
|
||||
handleSelectionChange(val) {
|
||||
this.itemList = val;
|
||||
},
|
||||
|
||||
// 生成表头序号
|
||||
indexMethod(index) {
|
||||
return index + 1;
|
||||
},
|
||||
|
||||
/** 查询设备编码列表*/
|
||||
getList() {
|
||||
this.loading = true;
|
||||
this.queryParams.userName = this.queryParams.itemCode;
|
||||
this.queryParams.nickName = this.queryParams.itemName;
|
||||
getRepairPersonList(this.queryParams).then((response) => {
|
||||
this.itemList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.queryParams.equipmentTypeCode = null;
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map((item) => item.userId);
|
||||
this.userCodes = selection.map((item) => item.userName);
|
||||
this.single = selection.length !== 1;
|
||||
this.multiple = !selection.length;
|
||||
},
|
||||
|
||||
submitForm() {
|
||||
if (this.$refs.multipleTable.selection.length > 1) {
|
||||
Message.warning("只能选择一个报修人,请勿选择多个!");
|
||||
} else {
|
||||
this.$emit("onSelected", this.$refs.multipleTable.selection);
|
||||
this.showFlag = false;
|
||||
this.getList();
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
Loading…
Reference in New Issue