203 lines
5.9 KiB
Vue
203 lines
5.9 KiB
Vue
<template>
|
|
<!-- 告警记录功能 -->
|
|
<div class="app-container alarm-record">
|
|
<el-form
|
|
:model="queryParams"
|
|
ref="queryForm"
|
|
:inline="true"
|
|
v-show="showSearch"
|
|
label-width="68px"
|
|
>
|
|
<el-form-item label="报警时间" prop="alarmTime">
|
|
<el-date-picker
|
|
v-model="time"
|
|
size="small"
|
|
@change="queryTimeChange"
|
|
clearable
|
|
type="datetimerange"
|
|
range-separator="至"
|
|
start-placeholder="开始日期"
|
|
end-placeholder="结束日期">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="告警类型" prop="typeName">
|
|
<el-input
|
|
v-model="queryParams.typeName"
|
|
placeholder="请输入告警类型"
|
|
clearable
|
|
size="small"
|
|
@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="warning"
|
|
plain
|
|
icon="el-icon-download"
|
|
size="mini"
|
|
@click="handleExport"
|
|
v-hasPermi="['iot:record:export']"
|
|
>导出</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="recordList">
|
|
<el-table-column type="index" label="序号" align="center" :index="indexFormatter" width="80px"></el-table-column>
|
|
<el-table-column label="设备名称" align="left" width="200px" prop="deviceName" />
|
|
<!-- <el-table-column label="设备当前值" align="left" width="200px" prop="currentValue" >
|
|
<template slot-scope="scope">
|
|
<span style="text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">{{scope.row.currentValue}}</span>
|
|
</template>
|
|
</el-table-column> -->
|
|
<el-table-column label="推送内容" align="left" prop="alarmContent" />
|
|
<el-table-column label="报警时间" align="center" prop="alarmTime" width="120">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.alarmTime, '{y}-{m}-{d}') }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="处理状态" width="100px" align="center" prop="processState" :formatter="stateFormatter"/>
|
|
<el-table-column label="处理结果" align="left" width="150px" prop="processResult" />
|
|
<el-table-column label="处理时间" align="center" prop="processTime" width="120">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.processTime, '{y}-{m}-{d}') }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="告警类型" align="left" width="150px" prop="typeName" />
|
|
<el-table-column label="类型编码" align="left" width="150px" prop="typeCode" />
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="total>0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
listRecord,
|
|
exportRecord
|
|
} from "@/api/personal/alarm";
|
|
import Editor from "@/components/Editor";
|
|
|
|
export default {
|
|
name: "Record",
|
|
components: {
|
|
Editor
|
|
},
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 报警记录表格数据
|
|
recordList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
typeName: null,
|
|
typeCode: null,
|
|
beginTime: null,
|
|
endTime: null,
|
|
alarmDivide: 'ALARM'
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {},
|
|
time: []
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
queryTimeChange(val) {
|
|
if (val) {
|
|
this.queryParams.beginTime = this.parseTime(val[0], '{y}-{m}-{d} {h}:{i}:{s}')
|
|
this.queryParams.endTime = this.parseTime(val[1], '{y}-{m}-{d} {h}:{i}:{s}')
|
|
} else {
|
|
this.queryParams.beginTime = null;
|
|
this.queryParams.endTime = null;
|
|
}
|
|
},
|
|
stateFormatter(val) {
|
|
return val === '2' ? '已处理' : '未处理'
|
|
},
|
|
indexFormatter(val) {
|
|
return (
|
|
val + 1 + (this.queryParams.pageNum - 1) * this.queryParams.pageSize
|
|
);
|
|
},
|
|
/** 查询报警记录列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listRecord(this.queryParams).then(response => {
|
|
this.recordList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.time = [];
|
|
this.queryParams.beginTime = null;
|
|
this.queryParams.endTime = null;
|
|
this.handleQuery();
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
const queryParams = this.queryParams;
|
|
this.$confirm("是否确认导出所有报警记录数据项?", "警告", {
|
|
confirmButtonText: "确定",
|
|
cancelButtonText: "取消",
|
|
type: "warning"
|
|
})
|
|
.then(function() {
|
|
return exportRecord(queryParams);
|
|
})
|
|
.then(response => {
|
|
this.download(response.msg);
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|