Commit 8fdf8b52 authored by forevertyler's avatar forevertyler

fix:人员报警历史

parent 61909b21
<template>
<div>
电力系统
</div>
</template>
\ No newline at end of file
<template> <template>
<div class="app-container"> <div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="" prop="perName">
<el-input
v-model="queryParams.perName"
placeholder="请输入姓名"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="cardNumber">
<el-select v-model="queryParams.cardNumber" placeholder="请选择卡号" clearable>
<el-option
v-for="dict in cardNoList"
:key="dict.value"
:label="dict.name"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="" prop="departId">
<el-select v-model="queryParams.departId" placeholder="请选择部门" clearable>
<el-option
v-for="dict in DepartmentList"
:key="dict.value"
:label="dict.name"
:value="dict.value"
/>
</el-select>
</el-form-item>
<!-- <el-form-item label="" prop="positionId">
<el-select v-model="queryParams.positionId" placeholder="请选择职务" clearable>
<el-option
v-for="dict in InfoPositionList"
:key="dict.value"
:label="dict.name"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="" prop="jobTypeId">
<el-select v-model="queryParams.jobTypeId" placeholder="请选择工种" clearable>
<el-option
v-for="dict in WorkTypeList"
:key="dict.value"
:label="dict.name"
:value="dict.value"
/>
</el-select>
</el-form-item> -->
<el-form-item label="日期查询"> <el-form-item label="日期查询">
<el-date-picker v-model="dateRange" style="width: 240px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker> <el-date-picker v-model="dateRange" style="width: 240px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> <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-item>
</el-form> </el-form>
<el-tabs v-model="queryParams.alarmType" type="card" @tab-click="handleClick"> <el-table v-loading="loading" :data="perHisList" >
<el-tab-pane v-for="item in navName" :label="`${item.dictLabel}`" :name="item.dictValue" :key="item.dictCode"> <el-table-column label="姓名" align="center" prop="perName" />
<el-table v-loading="loading" :data="ALARMDATAList" height="500" > <el-table-column label="卡号" align="center" prop="cardNumber" />
<el-table-column v-if="labelName.perName" :label="labelName.perName" align="center" prop="perName" /> <el-table-column label="部门" align="center" prop="departName" />
<el-table-column v-if="labelName.cardNumber" :label="labelName.cardNumber" align="center" prop="cardNumber" /> <el-table-column label="分站名称" align="center" prop="stationName" />
<el-table-column v-if="labelName.departName" :label="labelName.departName" align="center" prop="departName" /> <el-table-column label="分站位置" align="center" prop="location" />
<el-table-column v-if="labelName.stationId" :label="labelName.stationId" align="center" prop="stationId" /> <el-table-column label="所属区域" align="center" prop="areaName" />
<el-table-column v-if="labelName.stationName" :label="labelName.stationName" align="center" prop="stationName" /> <el-table-column label="时间" align="center" prop="alarmTime" >
<el-table-column v-if="labelName.actionID" :label="labelName.actionID" align="center" prop="actionID" /> <template slot-scope="scope">
<el-table-column v-if="labelName.location" :label="labelName.location" align="center" prop="location" /> <span>{{ parseTime(scope.row.alarmTime) }}</span>
<el-table-column v-if="labelName.areaName" :label="labelName.areaName" align="center" prop="areaName" /> </template>
<el-table-column v-if="labelName.entryTime" :label="labelName.entryTime" align="center" prop="entryTime" /> </el-table-column>
<el-table-column v-if="labelName.reason" :label="labelName.reason" align="center" prop="reason" /> <el-table-column label="分站距离(m)" align="center" prop=""/>
<el-table-column v-if="labelName.alarmTime" :label="labelName.alarmTime" align="center" prop="alarmTime" />
<el-table-column v-if="labelName.overCapacityCount" :label="labelName.overCapacityCount" align="center" prop="overCapacityCount" />
</el-table> </el-table>
</el-tab-pane> <pagination
</el-tabs> v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div> </div>
</template> </template>
<script> <script>
import { perAlarmHistory } from "@/api/tyler/perHis"; import { perAlarmHistory } from "@/api/tyler/perHis";
import { listData } from "@/api/system/dict/data"; import { baseInfoDepartment, baseInfoArea, baseInfoStation, baseInfoWorkType, baseInfoPosition, baseInfoCardNumber } from "@/api/tyler/common";
// import { personAlarmDataEdit } from "@/api/underPosition/personAlarm";
// import { getALARMDATA,updateALARMDATA } from "@/api/underPosition/areaAlarm";
// import { listDept } from "@/api/system/dept";
export default { export default {
name: "myname", name: "perHis",
dicts: ['per_alarm_type'],
components: {},
props: [],
data() { data() {
return { return {
// 根路径
baseURL: process.env.VUE_APP_BASE_API,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 考勤管理数据表格数据
perHisList: [],
// 弹出层标题 // 弹出层标题
title: "", title: "",
// 是否显示弹出层 // 是否显示弹出层
...@@ -54,240 +123,119 @@ export default { ...@@ -54,240 +123,119 @@ export default {
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
alarmType:'1', perName:null,
cardNumber: null, cardNumber: null,
departId: null, departId: null,
positionId: null, positionId: null,
jobTypeId: null, jobTypeId: null,
}, },
//查看人员
openPerson:false,
loading:false,
activeName: '1',
navName:[],
ONLINEDATAList:[],
// 矿山区域监测报警数据表格数据
ALARMDATAList: [],
// 表单参数
form: {},
// 表单校验
rules: {
id: [
{ required: true, message: "唯一标识符不能为空", trigger: "blur" }
],
},
personData:[],
labelName:{
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
alarmTime:'报警时间',
},
// 日期范围 // 日期范围
dateRange: [], dateRange: [],
// 表单参数
form: {},
// common
//卡号列表
cardNoList: [],
//部门列表
DepartmentList: [],
//分站列表
StationList: [],
//区域列表
AreaList: [],
//职务列表
InfoPositionList: [],
//工种列表
WorkTypeList: [],
}; };
}, },
watch: {},
created() { created() {
this.$nextTick(function () { this.getCommon();
this.getTagname() this.getList();
});
},
mounted() {
this.$nextTick(function () {
this.getList(this.queryParams.alarmType)
// this.listRList('1')
});
}, },
methods: { methods: {
getList(alarmType){ // common
perAlarmHistory(this.addDateRange({alarmType}, this.dateRange)).then(res => {
this.ALARMDATAList = res.rows getCommon(){
//卡号
baseInfoCardNumber().then(res=>{
this.cardNoList = res.data;
}) })
}, //部门
getTagname(){ baseInfoDepartment().then(res=>{
listData({dictType:'per_alarm_type'}).then(res => { this.DepartmentList = res.data;
this.navName = res.rows;
}) })
}, //分站
handleClick(tab, event) { baseInfoStation().then(res=>{
console.log(tab,'handleClick') this.StationList = res.data;
// this.ONLINEDATAList = []; })
this.activeName = tab.paneName; //区域
this.getList(tab.paneName) baseInfoArea().then(res=>{
if(tab.paneName == 1){ this.AreaList = res.data;
this.labelName = { })
perName:'姓名', //职务
cardNumber:'卡号', baseInfoPosition().then(res=>{
departName:'部门', this.InfoPositionList = res.data;
location:'所在位置',
entryTime:'入井时间',
reason:null,
alarmTime:'报警时间',
actionID:null,
overCapacityCount:null,
areaName:null,
stationId:null,
stationName:null,
}
}else if(tab.paneName == 2){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
actionID:'动作',
overCapacityCount:'超员人数',
areaName:'区域名称',
stationId:null,
stationName:null,
}
}else if(tab.paneName == 3){
this.labelName = {
perName:null,
cardNumber:null,
departName:null,
location:'安装位置',
entryTime:null,
reason:'原因',
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
areaName:null,
stationId:'分站编号',
stationName:'分站名称',
}
}else if(tab.paneName == 4){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'分站位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:'分站编号',
stationName:null,
areaName:'限制区名称',
}
}else if(tab.paneName == 5){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:'未到达区域名称',
}
}else if(tab.paneName == 6){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'报警位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:null,
}
}
},
/**查看人员*/
handleViewPerson(row){
getALARMDATA(row.regionId).then(res => {
this.openPerson = true;
this.personData = res.data
}) })
//工种
baseInfoWorkType().then(res=>{
this.WorkTypeList = res.data;
})
},
/** 查询人员定位实时数据列表 */
getList() {
this.loading = true;
perAlarmHistory(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
this.perHisList = response.rows;
this.leaderList = response.remark;
this.total = response.total;
this.loading = false;
});
}, },
// 取消按钮 // 取消按钮
cancel() { cancel() {
this.open = false; this.open = false;
this.reset(); this.reset();
}, },
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
// 表单重置 // 表单重置
reset() { reset() {
this.form = { this.form = {
id: null, id: null,
alarmClearTime: null, perName: null,
relieveDuration: null, departId: null,
addressId: null,
areaId: null,
}; };
this.resetForm("form"); this.resetForm("form");
}, },
/** 修改按钮操作 */ /** 搜索按钮操作 */
handleUpdate(row) { handleQuery() {
this.reset(); this.queryParams.pageNum = 1;
this.form.id = row.id this.getList();
this.open = true;
this.title = "处理报警数据";
}, },
/** 提交按钮 */ /** 重置按钮操作 */
submitForm() { resetQuery() {
let that = this; this.resetForm("queryForm");
this.$refs["form"].validate(valid => { this.handleQuery();
if (valid) {
if (this.form.id != null && Number(this.activeName)<5) {
personAlarmDataEdit(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
}else if (this.form.id != null && Number(this.activeName)>4) {
updateALARMDATA(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
} else {
this.open = false;
// addONLINEDATA(this.form).then(response => {
// this.$modal.msgSuccess("新增成功");
// this.open = false;
// this.getList();
// });
}
}
});
}, },
/** 导出按钮操作 */
handleExport() {
this.download('business/per/export', {
...this.queryParams
}, `per_${new Date().getTime()}.xlsx`)
}
}, },
};
</script>
<style scoped lang="scss">
::v-deep .el-table .el-table__header-wrapper th{ };
background-color: #e8f2fb; </script>
} <style lang="scss" scoped>
::v-deep .el-tabs--card > .el-tabs__header .el-tabs__item.is-active{ .now-leader{
background-color: #e8f2fb; display: flex;
border-bottom: 2px solid #0b6bd2; justify-content: space-between;
} }
</style> </style>
\ No newline at end of file
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
<el-form-item label="日期查询">
<el-date-picker v-model="dateRange" style="width: 240px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="ALARMDATAList" >
<el-table-column v-if="labelName.perName" :label="labelName.perName" align="center" prop="perName" />
<el-table-column v-if="labelName.cardNumber" :label="labelName.cardNumber" align="center" prop="cardNumber" />
<el-table-column v-if="labelName.departName" :label="labelName.departName" align="center" prop="departName" />
<el-table-column v-if="labelName.stationId" :label="labelName.stationId" align="center" prop="stationId" />
<el-table-column v-if="labelName.stationName" :label="labelName.stationName" align="center" prop="stationName" />
<el-table-column v-if="labelName.actionID" :label="labelName.actionID" align="center" prop="actionID" />
<el-table-column v-if="labelName.location" :label="labelName.location" align="center" prop="location" />
<el-table-column v-if="labelName.areaName" :label="labelName.areaName" align="center" prop="areaName" />
<el-table-column v-if="labelName.entryTime" :label="labelName.entryTime" align="center" prop="entryTime" />
<el-table-column v-if="labelName.reason" :label="labelName.reason" align="center" prop="reason" />
<el-table-column v-if="labelName.alarmTime" :label="labelName.alarmTime" align="center" prop="alarmTime" />
<el-table-column v-if="labelName.overCapacityCount" :label="labelName.overCapacityCount" align="center" prop="overCapacityCount" />
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import { perAlarmHistory } from "@/api/tyler/perHis";
import { listData } from "@/api/system/dict/data";
// import { personAlarmDataEdit } from "@/api/underPosition/personAlarm";
// import { getALARMDATA,updateALARMDATA } from "@/api/underPosition/areaAlarm";
// import { listDept } from "@/api/system/dept";
export default {
name: "myname",
dicts: ['per_alarm_type'],
components: {},
props: [],
data() {
return {
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
alarmType:'4',
cardNumber: null,
departId: null,
positionId: null,
jobTypeId: null,
},
//查看人员
openPerson:false,
loading:false,
activeName: '1',
navName:[],
ONLINEDATAList:[],
// 矿山区域监测报警数据表格数据
ALARMDATAList: [],
// 表单参数
form: {},
// 表单校验
rules: {
id: [
{ required: true, message: "唯一标识符不能为空", trigger: "blur" }
],
},
personData:[],
labelName:{
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
alarmTime:'报警时间',
},
// 日期范围
dateRange: [],
total:0,
};
},
watch: {},
created() {
this.$nextTick(function () {
this.getTagname()
});
},
mounted() {
this.$nextTick(function () {
this.getList()
// this.listRList('1')
});
},
methods: {
getList(){
perAlarmHistory(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
this.ALARMDATAList = res.rows
this.total = res.total||0;
})
},
getTagname(){
listData({dictType:'per_alarm_type'}).then(res => {
this.navName = res.rows;
})
},
handleClick(tab, event) {
console.log(tab,'handleClick')
// this.ONLINEDATAList = [];
this.activeName = tab.paneName;
this.getList(tab.paneName)
if(tab.paneName == 1){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
reason:null,
alarmTime:'报警时间',
actionID:null,
overCapacityCount:null,
areaName:null,
stationId:null,
stationName:null,
}
}else if(tab.paneName == 2){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
actionID:'动作',
overCapacityCount:'超员人数',
areaName:'区域名称',
stationId:null,
stationName:null,
}
}else if(tab.paneName == 3){
this.labelName = {
perName:null,
cardNumber:null,
departName:null,
location:'安装位置',
entryTime:null,
reason:'原因',
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
areaName:null,
stationId:'分站编号',
stationName:'分站名称',
}
}else if(tab.paneName == 4){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'分站位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:'分站编号',
stationName:null,
areaName:'限制区名称',
}
}else if(tab.paneName == 5){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:'未到达区域名称',
}
}else if(tab.paneName == 6){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'报警位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:null,
}
}
},
/**查看人员*/
handleViewPerson(row){
getALARMDATA(row.regionId).then(res => {
this.openPerson = true;
this.personData = res.data
})
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
// 表单重置
reset() {
this.form = {
id: null,
alarmClearTime: null,
relieveDuration: null,
};
this.resetForm("form");
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.form.id = row.id
this.open = true;
this.title = "处理报警数据";
},
/** 提交按钮 */
submitForm() {
let that = this;
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null && Number(this.activeName)<5) {
personAlarmDataEdit(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
}else if (this.form.id != null && Number(this.activeName)>4) {
updateALARMDATA(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
} else {
this.open = false;
// addONLINEDATA(this.form).then(response => {
// this.$modal.msgSuccess("新增成功");
// this.open = false;
// this.getList();
// });
}
}
});
},
},
};
</script>
\ No newline at end of file
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
<el-form-item label="日期查询">
<el-date-picker v-model="dateRange" style="width: 240px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="ALARMDATAList" >
<el-table-column v-if="labelName.perName" :label="labelName.perName" align="center" prop="perName" />
<el-table-column v-if="labelName.cardNumber" :label="labelName.cardNumber" align="center" prop="cardNumber" />
<el-table-column v-if="labelName.departName" :label="labelName.departName" align="center" prop="departName" />
<el-table-column v-if="labelName.stationId" :label="labelName.stationId" align="center" prop="stationId" />
<el-table-column v-if="labelName.stationName" :label="labelName.stationName" align="center" prop="stationName" />
<el-table-column v-if="labelName.actionID" :label="labelName.actionID" align="center" prop="actionID" />
<el-table-column v-if="labelName.location" :label="labelName.location" align="center" prop="location" />
<el-table-column v-if="labelName.areaName" :label="labelName.areaName" align="center" prop="areaName" />
<el-table-column v-if="labelName.entryTime" :label="labelName.entryTime" align="center" prop="entryTime" />
<el-table-column v-if="labelName.reason" :label="labelName.reason" align="center" prop="reason" />
<el-table-column v-if="labelName.alarmTime" :label="labelName.alarmTime" align="center" prop="alarmTime" />
<el-table-column v-if="labelName.overCapacityCount" :label="labelName.overCapacityCount" align="center" prop="overCapacityCount" />
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import { perAlarmHistory } from "@/api/tyler/perHis";
import { listData } from "@/api/system/dict/data";
// import { personAlarmDataEdit } from "@/api/underPosition/personAlarm";
// import { getALARMDATA,updateALARMDATA } from "@/api/underPosition/areaAlarm";
// import { listDept } from "@/api/system/dept";
export default {
name: "myname",
dicts: ['per_alarm_type'],
components: {},
props: [],
data() {
return {
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
alarmType:'3',
cardNumber: null,
departId: null,
positionId: null,
jobTypeId: null,
},
//查看人员
openPerson:false,
loading:false,
activeName: '1',
navName:[],
ONLINEDATAList:[],
// 矿山区域监测报警数据表格数据
ALARMDATAList: [],
// 表单参数
form: {},
// 表单校验
rules: {
id: [
{ required: true, message: "唯一标识符不能为空", trigger: "blur" }
],
},
personData:[],
labelName:{
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
alarmTime:'报警时间',
},
// 日期范围
dateRange: [],
total:0,
};
},
watch: {},
created() {
this.$nextTick(function () {
this.getTagname()
});
},
mounted() {
this.$nextTick(function () {
this.getList()
// this.listRList('1')
});
},
methods: {
getList(){
perAlarmHistory(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
this.ALARMDATAList = res.rows
this.total = res.total||0;
})
},
getTagname(){
listData({dictType:'per_alarm_type'}).then(res => {
this.navName = res.rows;
})
},
handleClick(tab, event) {
console.log(tab,'handleClick')
// this.ONLINEDATAList = [];
this.activeName = tab.paneName;
this.getList(tab.paneName)
if(tab.paneName == 1){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
reason:null,
alarmTime:'报警时间',
actionID:null,
overCapacityCount:null,
areaName:null,
stationId:null,
stationName:null,
}
}else if(tab.paneName == 2){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
actionID:'动作',
overCapacityCount:'超员人数',
areaName:'区域名称',
stationId:null,
stationName:null,
}
}else if(tab.paneName == 3){
this.labelName = {
perName:null,
cardNumber:null,
departName:null,
location:'安装位置',
entryTime:null,
reason:'原因',
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
areaName:null,
stationId:'分站编号',
stationName:'分站名称',
}
}else if(tab.paneName == 4){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'分站位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:'分站编号',
stationName:null,
areaName:'限制区名称',
}
}else if(tab.paneName == 5){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:'未到达区域名称',
}
}else if(tab.paneName == 6){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'报警位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:null,
}
}
},
/**查看人员*/
handleViewPerson(row){
getALARMDATA(row.regionId).then(res => {
this.openPerson = true;
this.personData = res.data
})
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
// 表单重置
reset() {
this.form = {
id: null,
alarmClearTime: null,
relieveDuration: null,
};
this.resetForm("form");
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.form.id = row.id
this.open = true;
this.title = "处理报警数据";
},
/** 提交按钮 */
submitForm() {
let that = this;
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null && Number(this.activeName)<5) {
personAlarmDataEdit(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
}else if (this.form.id != null && Number(this.activeName)>4) {
updateALARMDATA(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
} else {
this.open = false;
// addONLINEDATA(this.form).then(response => {
// this.$modal.msgSuccess("新增成功");
// this.open = false;
// this.getList();
// });
}
}
});
},
},
};
</script>
\ No newline at end of file
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
<el-form-item label="日期查询">
<el-date-picker v-model="dateRange" style="width: 240px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="ALARMDATAList" >
<el-table-column v-if="labelName.perName" :label="labelName.perName" align="center" prop="perName" />
<el-table-column v-if="labelName.cardNumber" :label="labelName.cardNumber" align="center" prop="cardNumber" />
<el-table-column v-if="labelName.departName" :label="labelName.departName" align="center" prop="departName" />
<el-table-column v-if="labelName.stationId" :label="labelName.stationId" align="center" prop="stationId" />
<el-table-column v-if="labelName.stationName" :label="labelName.stationName" align="center" prop="stationName" />
<el-table-column v-if="labelName.actionID" :label="labelName.actionID" align="center" prop="actionID" />
<el-table-column v-if="labelName.location" :label="labelName.location" align="center" prop="location" />
<el-table-column v-if="labelName.areaName" :label="labelName.areaName" align="center" prop="areaName" />
<el-table-column v-if="labelName.entryTime" :label="labelName.entryTime" align="center" prop="entryTime" />
<el-table-column v-if="labelName.reason" :label="labelName.reason" align="center" prop="reason" />
<el-table-column v-if="labelName.alarmTime" :label="labelName.alarmTime" align="center" prop="alarmTime" />
<el-table-column v-if="labelName.overCapacityCount" :label="labelName.overCapacityCount" align="center" prop="overCapacityCount" />
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import { perAlarmHistory } from "@/api/tyler/perHis";
import { listData } from "@/api/system/dict/data";
// import { personAlarmDataEdit } from "@/api/underPosition/personAlarm";
// import { getALARMDATA,updateALARMDATA } from "@/api/underPosition/areaAlarm";
// import { listDept } from "@/api/system/dept";
export default {
name: "myname",
dicts: ['per_alarm_type'],
components: {},
props: [],
data() {
return {
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
alarmType:'2',
cardNumber: null,
departId: null,
positionId: null,
jobTypeId: null,
},
//查看人员
openPerson:false,
loading:false,
activeName: '1',
navName:[],
ONLINEDATAList:[],
// 矿山区域监测报警数据表格数据
ALARMDATAList: [],
// 表单参数
form: {},
// 表单校验
rules: {
id: [
{ required: true, message: "唯一标识符不能为空", trigger: "blur" }
],
},
personData:[],
labelName:{
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
alarmTime:'报警时间',
},
// 日期范围
dateRange: [],
total:0,
};
},
watch: {},
created() {
this.$nextTick(function () {
this.getTagname()
});
},
mounted() {
this.$nextTick(function () {
this.getList()
// this.listRList('1')
});
},
methods: {
getList(){
perAlarmHistory(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
this.ALARMDATAList = res.rows
this.total = res.total||0;
})
},
getTagname(){
listData({dictType:'per_alarm_type'}).then(res => {
this.navName = res.rows;
})
},
handleClick(tab, event) {
console.log(tab,'handleClick')
// this.ONLINEDATAList = [];
this.activeName = tab.paneName;
this.getList(tab.paneName)
if(tab.paneName == 1){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
reason:null,
alarmTime:'报警时间',
actionID:null,
overCapacityCount:null,
areaName:null,
stationId:null,
stationName:null,
}
}else if(tab.paneName == 2){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
actionID:'动作',
overCapacityCount:'超员人数',
areaName:'区域名称',
stationId:null,
stationName:null,
}
}else if(tab.paneName == 3){
this.labelName = {
perName:null,
cardNumber:null,
departName:null,
location:'安装位置',
entryTime:null,
reason:'原因',
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
areaName:null,
stationId:'分站编号',
stationName:'分站名称',
}
}else if(tab.paneName == 4){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'分站位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:'分站编号',
stationName:null,
areaName:'限制区名称',
}
}else if(tab.paneName == 5){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:'未到达区域名称',
}
}else if(tab.paneName == 6){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'报警位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:null,
}
}
},
/**查看人员*/
handleViewPerson(row){
getALARMDATA(row.regionId).then(res => {
this.openPerson = true;
this.personData = res.data
})
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
// 表单重置
reset() {
this.form = {
id: null,
alarmClearTime: null,
relieveDuration: null,
};
this.resetForm("form");
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.form.id = row.id
this.open = true;
this.title = "处理报警数据";
},
/** 提交按钮 */
submitForm() {
let that = this;
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null && Number(this.activeName)<5) {
personAlarmDataEdit(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
}else if (this.form.id != null && Number(this.activeName)>4) {
updateALARMDATA(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
} else {
this.open = false;
// addONLINEDATA(this.form).then(response => {
// this.$modal.msgSuccess("新增成功");
// this.open = false;
// this.getList();
// });
}
}
});
},
},
};
</script>
\ No newline at end of file
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
<el-form-item label="日期查询">
<el-date-picker v-model="dateRange" style="width: 240px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="ALARMDATAList" >
<el-table-column v-if="labelName.perName" :label="labelName.perName" align="center" prop="perName" />
<el-table-column v-if="labelName.cardNumber" :label="labelName.cardNumber" align="center" prop="cardNumber" />
<el-table-column v-if="labelName.departName" :label="labelName.departName" align="center" prop="departName" />
<el-table-column v-if="labelName.stationId" :label="labelName.stationId" align="center" prop="stationId" />
<el-table-column v-if="labelName.stationName" :label="labelName.stationName" align="center" prop="stationName" />
<el-table-column v-if="labelName.actionID" :label="labelName.actionID" align="center" prop="actionID" />
<el-table-column v-if="labelName.location" :label="labelName.location" align="center" prop="location" />
<el-table-column v-if="labelName.areaName" :label="labelName.areaName" align="center" prop="areaName" />
<el-table-column v-if="labelName.entryTime" :label="labelName.entryTime" align="center" prop="entryTime" />
<el-table-column v-if="labelName.reason" :label="labelName.reason" align="center" prop="reason" />
<el-table-column v-if="labelName.alarmTime" :label="labelName.alarmTime" align="center" prop="alarmTime" />
<el-table-column v-if="labelName.overCapacityCount" :label="labelName.overCapacityCount" align="center" prop="overCapacityCount" />
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import { perAlarmHistory } from "@/api/tyler/perHis";
import { listData } from "@/api/system/dict/data";
// import { personAlarmDataEdit } from "@/api/underPosition/personAlarm";
// import { getALARMDATA,updateALARMDATA } from "@/api/underPosition/areaAlarm";
// import { listDept } from "@/api/system/dept";
export default {
name: "myname",
dicts: ['per_alarm_type'],
components: {},
props: [],
data() {
return {
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
alarmType:'1',
cardNumber: null,
departId: null,
positionId: null,
jobTypeId: null,
},
//查看人员
openPerson:false,
loading:false,
activeName: '1',
navName:[],
ONLINEDATAList:[],
// 矿山区域监测报警数据表格数据
ALARMDATAList: [],
// 表单参数
form: {},
// 表单校验
rules: {
id: [
{ required: true, message: "唯一标识符不能为空", trigger: "blur" }
],
},
personData:[],
labelName:{
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
alarmTime:'报警时间',
},
// 日期范围
dateRange: [],
total:0,
};
},
watch: {},
created() {
this.$nextTick(function () {
this.getTagname()
});
},
mounted() {
this.$nextTick(function () {
this.getList()
// this.listRList('1')
});
},
methods: {
getList(){
perAlarmHistory(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
this.ALARMDATAList = res.rows
this.total = res.total||0;
})
},
getTagname(){
listData({dictType:'per_alarm_type'}).then(res => {
this.navName = res.rows;
})
},
handleClick(tab, event) {
console.log(tab,'handleClick')
// this.ONLINEDATAList = [];
this.activeName = tab.paneName;
this.getList(tab.paneName)
if(tab.paneName == 1){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
reason:null,
alarmTime:'报警时间',
actionID:null,
overCapacityCount:null,
areaName:null,
stationId:null,
stationName:null,
}
}else if(tab.paneName == 2){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
actionID:'动作',
overCapacityCount:'超员人数',
areaName:'区域名称',
stationId:null,
stationName:null,
}
}else if(tab.paneName == 3){
this.labelName = {
perName:null,
cardNumber:null,
departName:null,
location:'安装位置',
entryTime:null,
reason:'原因',
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
areaName:null,
stationId:'分站编号',
stationName:'分站名称',
}
}else if(tab.paneName == 4){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'分站位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:'分站编号',
stationName:null,
areaName:'限制区名称',
}
}else if(tab.paneName == 5){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:'未到达区域名称',
}
}else if(tab.paneName == 6){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'报警位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:null,
}
}
},
/**查看人员*/
handleViewPerson(row){
getALARMDATA(row.regionId).then(res => {
this.openPerson = true;
this.personData = res.data
})
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
// 表单重置
reset() {
this.form = {
id: null,
alarmClearTime: null,
relieveDuration: null,
};
this.resetForm("form");
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.form.id = row.id
this.open = true;
this.title = "处理报警数据";
},
/** 提交按钮 */
submitForm() {
let that = this;
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null && Number(this.activeName)<5) {
personAlarmDataEdit(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
}else if (this.form.id != null && Number(this.activeName)>4) {
updateALARMDATA(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
} else {
this.open = false;
// addONLINEDATA(this.form).then(response => {
// this.$modal.msgSuccess("新增成功");
// this.open = false;
// this.getList();
// });
}
}
});
},
},
};
</script>
\ No newline at end of file
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
<el-form-item label="日期查询">
<el-date-picker v-model="dateRange" style="width: 240px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="ALARMDATAList" >
<el-table-column v-if="labelName.perName" :label="labelName.perName" align="center" prop="perName" />
<el-table-column v-if="labelName.cardNumber" :label="labelName.cardNumber" align="center" prop="cardNumber" />
<el-table-column v-if="labelName.departName" :label="labelName.departName" align="center" prop="departName" />
<el-table-column v-if="labelName.stationId" :label="labelName.stationId" align="center" prop="stationId" />
<el-table-column v-if="labelName.stationName" :label="labelName.stationName" align="center" prop="stationName" />
<el-table-column v-if="labelName.actionID" :label="labelName.actionID" align="center" prop="actionID" />
<el-table-column v-if="labelName.location" :label="labelName.location" align="center" prop="location" />
<el-table-column v-if="labelName.areaName" :label="labelName.areaName" align="center" prop="areaName" />
<el-table-column v-if="labelName.entryTime" :label="labelName.entryTime" align="center" prop="entryTime" />
<el-table-column v-if="labelName.reason" :label="labelName.reason" align="center" prop="reason" />
<el-table-column v-if="labelName.alarmTime" :label="labelName.alarmTime" align="center" prop="alarmTime" />
<el-table-column v-if="labelName.overCapacityCount" :label="labelName.overCapacityCount" align="center" prop="overCapacityCount" />
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import { perAlarmHistory } from "@/api/tyler/perHis";
import { listData } from "@/api/system/dict/data";
// import { personAlarmDataEdit } from "@/api/underPosition/personAlarm";
// import { getALARMDATA,updateALARMDATA } from "@/api/underPosition/areaAlarm";
// import { listDept } from "@/api/system/dept";
export default {
name: "myname",
dicts: ['per_alarm_type'],
components: {},
props: [],
data() {
return {
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
alarmType:'6',
cardNumber: null,
departId: null,
positionId: null,
jobTypeId: null,
},
//查看人员
openPerson:false,
loading:false,
activeName: '1',
navName:[],
ONLINEDATAList:[],
// 矿山区域监测报警数据表格数据
ALARMDATAList: [],
// 表单参数
form: {},
// 表单校验
rules: {
id: [
{ required: true, message: "唯一标识符不能为空", trigger: "blur" }
],
},
personData:[],
labelName:{
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
alarmTime:'报警时间',
},
// 日期范围
dateRange: [],
total:0,
};
},
watch: {},
created() {
this.$nextTick(function () {
this.getTagname()
});
},
mounted() {
this.$nextTick(function () {
this.getList()
// this.listRList('1')
});
},
methods: {
getList(){
perAlarmHistory(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
this.ALARMDATAList = res.rows
this.total = res.total||0;
})
},
getTagname(){
listData({dictType:'per_alarm_type'}).then(res => {
this.navName = res.rows;
})
},
handleClick(tab, event) {
console.log(tab,'handleClick')
// this.ONLINEDATAList = [];
this.activeName = tab.paneName;
this.getList(tab.paneName)
if(tab.paneName == 1){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
reason:null,
alarmTime:'报警时间',
actionID:null,
overCapacityCount:null,
areaName:null,
stationId:null,
stationName:null,
}
}else if(tab.paneName == 2){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
actionID:'动作',
overCapacityCount:'超员人数',
areaName:'区域名称',
stationId:null,
stationName:null,
}
}else if(tab.paneName == 3){
this.labelName = {
perName:null,
cardNumber:null,
departName:null,
location:'安装位置',
entryTime:null,
reason:'原因',
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
areaName:null,
stationId:'分站编号',
stationName:'分站名称',
}
}else if(tab.paneName == 4){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'分站位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:'分站编号',
stationName:null,
areaName:'限制区名称',
}
}else if(tab.paneName == 5){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:'未到达区域名称',
}
}else if(tab.paneName == 6){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'报警位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:null,
}
}
},
/**查看人员*/
handleViewPerson(row){
getALARMDATA(row.regionId).then(res => {
this.openPerson = true;
this.personData = res.data
})
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
// 表单重置
reset() {
this.form = {
id: null,
alarmClearTime: null,
relieveDuration: null,
};
this.resetForm("form");
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.form.id = row.id
this.open = true;
this.title = "处理报警数据";
},
/** 提交按钮 */
submitForm() {
let that = this;
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null && Number(this.activeName)<5) {
personAlarmDataEdit(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
}else if (this.form.id != null && Number(this.activeName)>4) {
updateALARMDATA(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
} else {
this.open = false;
// addONLINEDATA(this.form).then(response => {
// this.$modal.msgSuccess("新增成功");
// this.open = false;
// this.getList();
// });
}
}
});
},
},
};
</script>
\ No newline at end of file
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
<el-form-item label="日期查询">
<el-date-picker v-model="dateRange" style="width: 240px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="ALARMDATAList" >
<el-table-column v-if="labelName.perName" :label="labelName.perName" align="center" prop="perName" />
<el-table-column v-if="labelName.cardNumber" :label="labelName.cardNumber" align="center" prop="cardNumber" />
<el-table-column v-if="labelName.departName" :label="labelName.departName" align="center" prop="departName" />
<el-table-column v-if="labelName.stationId" :label="labelName.stationId" align="center" prop="stationId" />
<el-table-column v-if="labelName.stationName" :label="labelName.stationName" align="center" prop="stationName" />
<el-table-column v-if="labelName.actionID" :label="labelName.actionID" align="center" prop="actionID" />
<el-table-column v-if="labelName.location" :label="labelName.location" align="center" prop="location" />
<el-table-column v-if="labelName.areaName" :label="labelName.areaName" align="center" prop="areaName" />
<el-table-column v-if="labelName.entryTime" :label="labelName.entryTime" align="center" prop="entryTime" />
<el-table-column v-if="labelName.reason" :label="labelName.reason" align="center" prop="reason" />
<el-table-column v-if="labelName.alarmTime" :label="labelName.alarmTime" align="center" prop="alarmTime" />
<el-table-column v-if="labelName.overCapacityCount" :label="labelName.overCapacityCount" align="center" prop="overCapacityCount" />
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import { perAlarmHistory } from "@/api/tyler/perHis";
import { listData } from "@/api/system/dict/data";
// import { personAlarmDataEdit } from "@/api/underPosition/personAlarm";
// import { getALARMDATA,updateALARMDATA } from "@/api/underPosition/areaAlarm";
// import { listDept } from "@/api/system/dept";
export default {
name: "myname",
dicts: ['per_alarm_type'],
components: {},
props: [],
data() {
return {
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
alarmType:'5',
cardNumber: null,
departId: null,
positionId: null,
jobTypeId: null,
},
//查看人员
openPerson:false,
loading:false,
activeName: '1',
navName:[],
ONLINEDATAList:[],
// 矿山区域监测报警数据表格数据
ALARMDATAList: [],
// 表单参数
form: {},
// 表单校验
rules: {
id: [
{ required: true, message: "唯一标识符不能为空", trigger: "blur" }
],
},
personData:[],
labelName:{
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
alarmTime:'报警时间',
},
// 日期范围
dateRange: [],
total:0,
};
},
watch: {},
created() {
this.$nextTick(function () {
this.getTagname()
});
},
mounted() {
this.$nextTick(function () {
this.getList()
// this.listRList('1')
});
},
methods: {
getList(){
perAlarmHistory(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
this.ALARMDATAList = res.rows
this.total = res.total||0;
})
},
getTagname(){
listData({dictType:'per_alarm_type'}).then(res => {
this.navName = res.rows;
})
},
handleClick(tab, event) {
console.log(tab,'handleClick')
// this.ONLINEDATAList = [];
this.activeName = tab.paneName;
this.getList(tab.paneName)
if(tab.paneName == 1){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'所在位置',
entryTime:'入井时间',
reason:null,
alarmTime:'报警时间',
actionID:null,
overCapacityCount:null,
areaName:null,
stationId:null,
stationName:null,
}
}else if(tab.paneName == 2){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
actionID:'动作',
overCapacityCount:'超员人数',
areaName:'区域名称',
stationId:null,
stationName:null,
}
}else if(tab.paneName == 3){
this.labelName = {
perName:null,
cardNumber:null,
departName:null,
location:'安装位置',
entryTime:null,
reason:'原因',
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
areaName:null,
stationId:'分站编号',
stationName:'分站名称',
}
}else if(tab.paneName == 4){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'分站位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:'分站编号',
stationName:null,
areaName:'限制区名称',
}
}else if(tab.paneName == 5){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:null,
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:'未到达区域名称',
}
}else if(tab.paneName == 6){
this.labelName = {
perName:'姓名',
cardNumber:'卡号',
departName:'部门',
location:'报警位置',
entryTime:null,
reason:null,
alarmTime:'报警时间',
overCapacityCount:null,
actionID:null,
stationId:null,
stationName:null,
areaName:null,
}
}
},
/**查看人员*/
handleViewPerson(row){
getALARMDATA(row.regionId).then(res => {
this.openPerson = true;
this.personData = res.data
})
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
// 表单重置
reset() {
this.form = {
id: null,
alarmClearTime: null,
relieveDuration: null,
};
this.resetForm("form");
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.form.id = row.id
this.open = true;
this.title = "处理报警数据";
},
/** 提交按钮 */
submitForm() {
let that = this;
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null && Number(this.activeName)<5) {
personAlarmDataEdit(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
}else if (this.form.id != null && Number(this.activeName)>4) {
updateALARMDATA(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.listRList(that.activeName);
});
} else {
this.open = false;
// addONLINEDATA(this.form).then(response => {
// this.$modal.msgSuccess("新增成功");
// this.open = false;
// this.getList();
// });
}
}
});
},
},
};
</script>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment