forked from huangdaju/cloud-ui
合并故障码前台
parent
f2916b2ac2
commit
b08b3222cb
|
@ -0,0 +1,57 @@
|
|||
import request from '@/utils/request'
|
||||
|
||||
// 查询故障码列表
|
||||
export function listFaultCodes(query) {
|
||||
return request({
|
||||
url: '/business/faultCodes/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 新增故障码
|
||||
export function addFaultCodes(data) {
|
||||
return request({
|
||||
url: '/business/faultCodes',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询故障码详情
|
||||
export function getFaultCodes(faultId) {
|
||||
return request({
|
||||
url: '/business/faultCodes/' + faultId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 修改故障码
|
||||
export function updateFaultCodes(data) {
|
||||
return request({
|
||||
url: '/business/faultCodes',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改故障码状态
|
||||
export function changeFaultCodesStatus(faultId, status){
|
||||
const data = {
|
||||
faultId,
|
||||
status
|
||||
}
|
||||
return request({
|
||||
url: '/business/faultCodes/changeStatus',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除故障码
|
||||
export function delFaultCodes(faultId) {
|
||||
return request({
|
||||
url: '/business/faultCodes/' + faultId,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
|
@ -1,45 +0,0 @@
|
|||
import request from '@/utils/request'
|
||||
import data from "@/views/system/dict/data.vue";
|
||||
|
||||
// 查询员工列表
|
||||
export function selectEmployeeConditions(data) {
|
||||
return request({
|
||||
url: '/employee/employee/selectEmployeeConditions',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询员工详细
|
||||
export function getEmployee(empId) {
|
||||
return request({
|
||||
url: '/employee/employee/' + empId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增员工
|
||||
export function addEmployee(data) {
|
||||
return request({
|
||||
url: '/employee/employee',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改员工
|
||||
export function updateEmployee(data) {
|
||||
return request({
|
||||
url: '/employee/employee',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除员工
|
||||
export function delEmployee(empId) {
|
||||
return request({
|
||||
url: '/employee/employee/' + empId,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
|
@ -0,0 +1,357 @@
|
|||
<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="faultName">
|
||||
<el-input
|
||||
v-model="queryParams.faultName"
|
||||
placeholder="请输入故障名称"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<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="alarmFlag" :label-width="100">
|
||||
<el-select v-model="queryParams.alarmFlag" placeholder="请选择是否产生报警" clearable size="mini">
|
||||
<el-option
|
||||
v-for="dict in dict.type.sys_yes_no"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</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="['business:faultCodes: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="['business:faultCodes: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="['business:faultCodes: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="['business:faultCodes:export']"-->
|
||||
<!-- >导出</el-button>-->
|
||||
<!-- </el-col>-->
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="faultCodesList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="故障码" align="center" prop="faultCode" />
|
||||
<el-table-column label="故障名称" align="center" prop="faultName" />
|
||||
<el-table-column label="故障类型" align="center" prop="faultType">
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.faultType==1">通讯丢失故障</span>
|
||||
<span v-if="scope.row.faultType==2">车身故障</span>
|
||||
<span v-if="scope.row.faultType==3">底盘故障</span>
|
||||
<span v-if="scope.row.faultType==4">电子围栏故障</span>
|
||||
<span v-if="scope.row.faultType==5">其他故障</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="故障等级" align="center" prop="faultLevel">
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.faultLevel==1">高级故障</span>
|
||||
<span v-if="scope.row.faultLevel==2">中级故障</span>
|
||||
<span v-if="scope.row.faultLevel==3">低级故障</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="是否产生报警" align="center" prop="alarmFlag">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.sys_yes_no" :value="scope.row.alarmFlag"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="故障描述" align="center" prop="faultDesc" />
|
||||
<el-table-column label="故障位" align="center" prop="faultLocation" />
|
||||
<el-table-column label="故障值" align="center" prop="faultValue" />
|
||||
<el-table-column label="故障码状态" align="center" key="status" prop="status">
|
||||
<template slot-scope="scope">
|
||||
<el-switch v-model="scope.row.status" active-value="0" inactive-value="1"
|
||||
active-color="#13ce66"
|
||||
inactive-color="#ff4949"
|
||||
@change="handleStatusChange(scope.row)"
|
||||
></el-switch>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['business:faultCodes:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['business:faultCodes: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="faultName">
|
||||
<el-input v-model="form.faultName" placeholder="请输入故障名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="故障码" prop="faultCode">
|
||||
<el-input v-model="form.faultCode" placeholder="请输入故障码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="故障类型" prop="faultType">
|
||||
<el-select v-model="form.faultType" placeholder="请选择故障类型">
|
||||
<el-option label="通讯丢失故障" value="1"></el-option>
|
||||
<el-option label="车身故障" value="2"></el-option>
|
||||
<el-option label="底盘故障" value="3"></el-option>
|
||||
<el-option label="电子围栏故障" value="4"></el-option>
|
||||
<el-option label="其他故障" value="5"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障等级" prop="faultLevel">
|
||||
<el-select v-model="form.faultLevel" placeholder="请选择故障等级">
|
||||
<el-option label="高级故障" value="1"></el-option>
|
||||
<el-option label="中级故障" value="2"></el-option>
|
||||
<el-option label="低级故障" value="3"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="故障描述" prop="faultDesc">
|
||||
<el-input v-model="form.faultDesc" placeholder="请输入故障描述" />
|
||||
</el-form-item>
|
||||
<el-form-item label="故障位" prop="faultLocation">
|
||||
<el-input v-model="form.faultLocation" placeholder="请输入故障位" />
|
||||
</el-form-item>
|
||||
<el-form-item label="故障值" prop="faultValue">
|
||||
<el-input v-model="form.faultValue" 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 { listFaultCodes, getFaultCodes, delFaultCodes, addFaultCodes, updateFaultCodes, changeFaultCodesStatus } from "@/api/business/fault_code_info";
|
||||
|
||||
export default {
|
||||
name: "FaultCodes",
|
||||
dicts: ['sys_yes_no','sys_common_status'],
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 故障码表格数据
|
||||
faultCodesList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
faultName: null,
|
||||
faultCode: null,
|
||||
alarmFlag: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询故障码列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listFaultCodes(this.queryParams).then(res => {
|
||||
this.faultCodesList = res.data.rows;
|
||||
this.total = res.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 故障码状态修改
|
||||
handleStatusChange(row) {
|
||||
let text = row.status === "0" ? "启用" : "停用";
|
||||
this.$confirm('确认要"' + text + '""' + row.faultName + '"故障码吗?', "警告", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
}).then(function() {
|
||||
return changeFaultCodesStatus(row.faultId, row.status);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$message.success(text + "成功");
|
||||
}).catch(function() {
|
||||
row.status = row.status === "0" ? "1" : "0";
|
||||
});
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
faultId: null,
|
||||
faultName: null,
|
||||
faultCode: null,
|
||||
faultType: null,
|
||||
faultLevel: null,
|
||||
alarmFlag: null,
|
||||
faultDesc: null,
|
||||
faultLocation: null,
|
||||
faultValue: null,
|
||||
status: null,
|
||||
delFlag: 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.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
|
||||
getFaultCodes(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) {
|
||||
updateFaultCodes(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addFaultCodes(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const faultIds = row.faultId || this.ids;
|
||||
this.$modal.confirm('是否确认删除故障码编号为"' + faultIds + '"的数据项?').then(function() {
|
||||
return delFaultCodes(faultIds);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('business/faultCodes/export', {
|
||||
...this.queryParams
|
||||
}, `faultCodes_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
|
@ -1,65 +0,0 @@
|
|||
<template>
|
||||
<div>
|
||||
{{employeeList}}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
//这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等),
|
||||
//例如:import 《组件名称》 from '《组件路径》,
|
||||
import {selectEmployeeConditions} from "@/api/employee/employee";
|
||||
|
||||
export default {
|
||||
//import引入的组件需要注入到对象中才能使用"
|
||||
components: {},
|
||||
props: {},
|
||||
data() {
|
||||
//这里存放数据"
|
||||
|
||||
return {
|
||||
reqConditions:{},
|
||||
employeeList:[]
|
||||
};
|
||||
},
|
||||
//计算属性 类似于data概念",
|
||||
computed: {},
|
||||
//监控data中的数据变化",
|
||||
watch: {},
|
||||
//方法集合",
|
||||
methods: {
|
||||
getList() {
|
||||
this.loading = true;
|
||||
selectEmployeeConditions(this.reqConditions).then(response => {
|
||||
console.log(response);
|
||||
this.employeeList = response.data.data;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
},
|
||||
//生命周期 - 创建完成(可以访问当前this实例)",
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
//生命周期 - 挂载完成(可以访问DOM元素)",
|
||||
mounted() {
|
||||
},
|
||||
beforeCreate() {
|
||||
}, //生命周期 - 创建之前",
|
||||
beforeMount() {
|
||||
}, //生命周期 - 挂载之前",
|
||||
beforeUpdate() {
|
||||
}, //生命周期 - 更新之前",
|
||||
updated() {
|
||||
}, //生命周期 - 更新之后",
|
||||
beforeDestroy() {
|
||||
}, //生命周期 - 销毁之前",
|
||||
destroyed() {
|
||||
}, //生命周期 - 销毁完成",
|
||||
activated() {
|
||||
} //如果页面有keep-alive缓存功能,这个函数会触发",
|
||||
};
|
||||
</script>
|
||||
<style scoped>
|
||||
|
||||
</style>
|
Loading…
Reference in New Issue