添加普通的故障增删改查功能
parent
c3899c4f3c
commit
2f0e8b690a
|
@ -0,0 +1,44 @@
|
|||
import request from '@/utils/request'
|
||||
|
||||
// 查询车辆故障列表
|
||||
export function listFault(query) {
|
||||
return request({
|
||||
url: '/fault/fault/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询车辆故障详细
|
||||
export function getFault(id) {
|
||||
return request({
|
||||
url: '/fault/syscarfault/fault/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增车辆故障
|
||||
export function addFault(data) {
|
||||
return request({
|
||||
url: '/syscarfault/fault',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改车辆故障
|
||||
export function updateFault(data) {
|
||||
return request({
|
||||
url: '/syscarfault/fault',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除车辆故障
|
||||
export function delFault(id) {
|
||||
return request({
|
||||
url: '/syscarfault/fault/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
|
@ -0,0 +1,485 @@
|
|||
<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="faultCode">
|
||||
<el-input
|
||||
v-model="queryParams.faultCode"
|
||||
placeholder="请输入车辆故障编码;"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆故障名称" prop="faultName">
|
||||
<el-input
|
||||
v-model="queryParams.faultName"
|
||||
placeholder="请输入车辆故障名称"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆故障标签" prop="faultLabel">
|
||||
<el-input
|
||||
v-model="queryParams.faultLabel"
|
||||
placeholder="请输入车辆故障标签"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆故障位" prop="faultBit">
|
||||
<el-input
|
||||
v-model="queryParams.faultBit"
|
||||
placeholder="请输入车辆故障位"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆故障值" prop="faultValue">
|
||||
<el-input
|
||||
v-model="queryParams.faultValue"
|
||||
placeholder="请输入车辆故障值"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障级别;" prop="faultWarn">
|
||||
<el-input
|
||||
v-model="queryParams.faultWarn"
|
||||
placeholder="请输入故障级别;"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="启用状态(1.待处理 2.处理中 3.已处理 4.忽略)" prop="state">
|
||||
<el-input
|
||||
v-model="queryParams.state"
|
||||
placeholder="请输入启用状态(1.待处理 2.处理中 3.已处理 4.忽略)"
|
||||
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="['syscarfault:fault: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="['syscarfault:fault: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="['syscarfault:fault: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="['syscarfault:fault:export']"
|
||||
>导出
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="FaultClassificationLevel=true">故障级别分类
|
||||
</el-button>
|
||||
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-dialog
|
||||
title="故障等级划分"
|
||||
:visible.sync="FaultClassificationLevel"
|
||||
width="30%"
|
||||
:before-close="FaultClassificationLevel">
|
||||
<span>以下是等级划分</span>
|
||||
<br>
|
||||
<br>
|
||||
<el-button @click="listGrading = true">低</el-button>
|
||||
<el-button @click="listGrading = true">中</el-button>
|
||||
<el-button @click="listGrading = true">高</el-button>
|
||||
<br>
|
||||
<el-button @click="FaultClassificationLevel = false">取 消</el-button>
|
||||
<el-button type="primary" @click="">确 定</el-button>
|
||||
</el-dialog>
|
||||
|
||||
<el-dialog
|
||||
title="提示"
|
||||
:visible.sync="listGrading"
|
||||
width="30%"
|
||||
:before-close="handleClose">
|
||||
<span>分级展示</span>
|
||||
<template>
|
||||
<el-table
|
||||
:data="form"
|
||||
border
|
||||
style="width: 100%">
|
||||
<el-table-column
|
||||
prop="id"
|
||||
label="自增主键"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="faultCode"
|
||||
label="车辆故障编码"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="faultName"
|
||||
label="车辆故障名称"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="faultType"
|
||||
label="车辆故障类型"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="carVin"
|
||||
label="故障VIN编码"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="faultLabel"
|
||||
label="车辆故障标签"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="faultBit"
|
||||
label="车辆故障位"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="faultValue"
|
||||
label="车辆故障值"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="faultWarn"
|
||||
label="故障级别"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="warnStatus"
|
||||
label="报警状态"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="faultDesc"
|
||||
label="故障描述信息"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="state"
|
||||
label="启用状态"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="remark"
|
||||
label="备注"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</template>
|
||||
|
||||
<span slot="footer" class="dialog-footer">
|
||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||
<el-button type="primary" @click="dialogVisible = false">确 定</el-button>
|
||||
</span>
|
||||
</el-dialog>
|
||||
|
||||
|
||||
<el-table v-loading="loading" :data="faultList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center"/>
|
||||
<el-table-column label="自增主键" align="center" prop="id"/>
|
||||
<el-table-column label="车辆故障编码;" align="center" prop="faultCode"/>
|
||||
<el-table-column label="车辆故障名称" align="center" prop="faultName"/>
|
||||
<el-table-column label="车辆故障类型" align="center" prop="faultType"/>
|
||||
<el-table-column label="故障VIN编码" align="center" prop="carVin"/>
|
||||
<el-table-column label="车辆故障标签" align="center" prop="faultLabel"/>
|
||||
<el-table-column label="车辆故障位" align="center" prop="faultBit"/>
|
||||
<el-table-column label="车辆故障值" align="center" prop="faultValue"/>
|
||||
<el-table-column label="故障级别;" align="center" prop="faultWarn"/>
|
||||
<el-table-column label="报警状态" align="center" prop="warnStatus"/>
|
||||
<el-table-column label="故障描述信息" align="center" prop="faultDesc"/>
|
||||
<el-table-column label="启用状态(1.待处理 2.处理中 3.已处理 4.忽略)" align="center" prop="state"/>
|
||||
<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="['syscarfault:fault:edit']"
|
||||
>修改
|
||||
</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['syscarfault:fault: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="faultCode">
|
||||
<el-input v-model="form.faultCode" placeholder="请输入车辆故障编码;"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆故障名称" prop="faultName">
|
||||
<el-input v-model="form.faultName" placeholder="请输入车辆故障名称"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障VIN编码" prop="carVin">
|
||||
<el-input v-model="form.carVin" type="textarea" placeholder="请输入内容"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆故障标签" prop="faultLabel">
|
||||
<el-input v-model="form.faultLabel" placeholder="请输入车辆故障标签"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆故障位" prop="faultBit">
|
||||
<el-input v-model="form.faultBit" placeholder="请输入车辆故障位"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆故障值" prop="faultValue">
|
||||
<el-input v-model="form.faultValue" placeholder="请输入车辆故障值"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障级别" prop="faultWarn">
|
||||
<el-input v-model="form.faultWarn" placeholder="请输入故障级别;"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障描述信息" prop="faultDesc">
|
||||
<el-input v-model="form.faultDesc" type="textarea" placeholder="请输入内容"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="启用状态(1.待处理 2.处理中 3.已处理 4.忽略)" prop="state">
|
||||
<el-input v-model="form.state" placeholder="请输入启用状态(1.待处理 2.处理中 3.已处理 4.忽略)"/>
|
||||
</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 {addFault, delFault, getFault, listFault, updateFault} from "/src/api/syscarfault/fault";
|
||||
import item from "@/layout/components/Sidebar/Item.vue";
|
||||
|
||||
export default {
|
||||
name: "Fault",
|
||||
computed: {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
FaultClassificationLevel: false,
|
||||
listGrading: false,
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 车辆故障表格数据
|
||||
faultList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
faultCode: null,
|
||||
faultName: null,
|
||||
faultType: null,
|
||||
carVin: null,
|
||||
faultLabel: null,
|
||||
faultBit: null,
|
||||
faultValue: null,
|
||||
faultWarn: null,
|
||||
warnStatus: null,
|
||||
faultDesc: null,
|
||||
state: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
faultCode: [
|
||||
{required: true, message: "车辆故障编码;不能为空", trigger: "blur"}
|
||||
],
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 故障模块分类级别 */
|
||||
FaultClassificationLevel(done) {
|
||||
this.$confirm('确认关闭?')
|
||||
.then(_ => {
|
||||
done();
|
||||
})
|
||||
.catch(_ => {
|
||||
});
|
||||
},
|
||||
/** 查询车辆故障列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listFault(this.queryParams).then(response => {
|
||||
this.faultList = response.data.rows;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: null,
|
||||
faultCode: null,
|
||||
faultName: null,
|
||||
faultType: null,
|
||||
carVin: null,
|
||||
faultLabel: null,
|
||||
faultBit: null,
|
||||
faultValue: null,
|
||||
faultWarn: null,
|
||||
warnStatus: null,
|
||||
faultDesc: null,
|
||||
state: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
remark: 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.id)
|
||||
this.single = selection.length !== 1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加车辆故障";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const id = row.id || this.ids
|
||||
getFault(id).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改车辆故障";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.id != null) {
|
||||
updateFault(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addFault(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal.confirm('是否确认删除车辆故障编号为"' + ids + '"的数据项?').then(function () {
|
||||
return delFault(ids);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {
|
||||
});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('syscarfault/fault/export', {
|
||||
...this.queryParams
|
||||
}, `fault_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in New Issue