add(ems): 添加噪声监测功能
- 新增噪声监测记录页面,实现噪声数据的查询、添加、修改和删除功能 - 添加噪声监测曲线页面,展示噪声数据的趋势图表 - 优化左侧树结构,支持按设备名称筛选- 修复了一些与时间范围筛选相关的小问题IOT
parent
5110335427
commit
e9a3773623
@ -0,0 +1,552 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-row :gutter="28">
|
||||||
|
<el-col :span="5" :xs="24">
|
||||||
|
<div class="head-container">
|
||||||
|
<el-input
|
||||||
|
v-model="workUnitName"
|
||||||
|
placeholder="请输入物联网设备名称"
|
||||||
|
clearable
|
||||||
|
size="small"
|
||||||
|
prefix-icon="el-icon-search"
|
||||||
|
style="margin-bottom: 20px"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="head-container">
|
||||||
|
<el-tree
|
||||||
|
:data="monitorInfoOptions"
|
||||||
|
:props="monitorProps"
|
||||||
|
:expand-on-click-node="false"
|
||||||
|
:filter-node-method="filterNode"
|
||||||
|
ref="tree"
|
||||||
|
node-key="id"
|
||||||
|
default-expand-all
|
||||||
|
highlight-current
|
||||||
|
@node-click="handleNodeClick"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="19" :xs="24">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
|
||||||
|
<el-form-item label="计量设备编号" prop="monitorId">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.monitorId"
|
||||||
|
placeholder="请输入计量设备编号"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="采集时间">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="daterangeCollectTime"
|
||||||
|
style="width: 340px"
|
||||||
|
value-format="yyyy-MM-dd HH:mm:ss"
|
||||||
|
type="datetimerange"
|
||||||
|
range-separator="-"
|
||||||
|
start-placeholder="开始时间"
|
||||||
|
end-placeholder="结束时间"
|
||||||
|
></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="记录时间">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="daterangeRecordTime"
|
||||||
|
style="width: 340px"
|
||||||
|
value-format="yyyy-MM-dd HH:mm:ss"
|
||||||
|
type="datetimerange"
|
||||||
|
range-separator="-"
|
||||||
|
start-placeholder="开始时间"
|
||||||
|
end-placeholder="结束时间"
|
||||||
|
></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- <el-form-item label=" " prop="confirmPersonID">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.confirmPersonID"
|
||||||
|
placeholder="请输入 "
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label=" " prop="confirmTime">
|
||||||
|
<el-date-picker clearable
|
||||||
|
v-model="queryParams.confirmTime"
|
||||||
|
type="date"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
placeholder="请选择 ">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label=" " prop="confirmFlag">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.confirmFlag"
|
||||||
|
placeholder="请输入 "
|
||||||
|
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="['ems/record:recordIOTInstant: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="['ems/record:recordIOTInstant: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="['ems/record:recordIOTInstant: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="['ems/record:recordIOTInstant:export']"
|
||||||
|
>导出</el-button>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="recordIOTInstantList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<!-- <el-table-column label="主键标识" align="center" prop="objid" v-if="columns[0].visible"/>-->
|
||||||
|
<el-table-column label="计量设备编号" align="center" prop="monitorId" v-if="columns[1].visible"/>
|
||||||
|
<el-table-column label="计量设备名称" align="center" prop="monitorName" v-if="columns[2].visible"/>
|
||||||
|
<el-table-column label="采集时间" align="center" prop="collectTime" width="180" v-if="columns[3].visible">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ parseTime(scope.row.collectTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<!-- <el-table-column label="温度" align="center" prop="tempreture" v-if="columns[4].visible"/>-->
|
||||||
|
<!-- <el-table-column label="湿度" align="center" prop="humidity" v-if="columns[5].visible"/>
|
||||||
|
<el-table-column label="照度" align="center" prop="illuminance" v-if="columns[6].visible"/>
|
||||||
|
<el-table-column label="噪声" align="center" prop="noise" v-if="columns[7].visible"/>
|
||||||
|
<el-table-column label="硫化氢浓度" align="center" prop="concentration" v-if="columns[8].visible"/>-->
|
||||||
|
<el-table-column label="噪声" align="center" prop="noise" v-if="columns[4].visible" />
|
||||||
|
<el-table-column label="记录时间" align="center" prop="recodeTime" width="180" v-if="columns[5].visible">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ parseTime(scope.row.recodeTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="报警类型" align="center" prop="alarmType" v-if="columns[6].visible"/>
|
||||||
|
<!-- <el-table-column label=" " align="center" prop="confirmPersonID" v-if="columns[10].visible"/>
|
||||||
|
<el-table-column label=" " align="center" prop="confirmTime" width="180" v-if="columns[11].visible">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ parseTime(scope.row.confirmTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label=" " align="center" prop="confirmFlag" v-if="columns[12].visible"/> -->
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="100">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-edit"
|
||||||
|
@click="handleUpdate(scope.row)"
|
||||||
|
v-hasPermi="['ems/record:recordIOTInstant:edit']"
|
||||||
|
>修改</el-button>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
@click="handleDelete(scope.row)"
|
||||||
|
v-hasPermi="['ems/record:recordIOTInstant:remove']"
|
||||||
|
>删除</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
|
||||||
|
<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="100px">
|
||||||
|
<!-- <el-form-item label="能源类型" prop="monitorType">
|
||||||
|
<treeselect v-model="form.monitorType" :options="baseMonitorInfoOptions" :normalizer="normalizer"
|
||||||
|
placeholder="请选择能源类型"
|
||||||
|
/>
|
||||||
|
</el-form-item>-->
|
||||||
|
<!-- <el-form-item label="计量设备编号" prop="monitorId">
|
||||||
|
<el-input v-model="form.monitorId" placeholder="请输入计量设备编号" />
|
||||||
|
</el-form-item>-->
|
||||||
|
<el-form-item label="计量设备名称" prop="monitorId">
|
||||||
|
<treeselect v-model="form.monitorId" :options="baseMonitorInfoOptions" :normalizer="normalizer"
|
||||||
|
placeholder="请选择计量设备名称"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="采集时间" prop="collectTime">
|
||||||
|
<el-date-picker clearable
|
||||||
|
v-model="form.collectTime"
|
||||||
|
type="datetime"
|
||||||
|
value-format="yyyy-MM-dd HH:mm:ss"
|
||||||
|
placeholder="请选择采集时间">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- <el-form-item label="温度" prop="tempreture">
|
||||||
|
<el-input v-model="form.tempreture" placeholder="请输入温度" />
|
||||||
|
</el-form-item>-->
|
||||||
|
<!-- <el-form-item label="湿度" prop="humidity">
|
||||||
|
<el-input v-model="form.humidity" placeholder="请输入湿度" />
|
||||||
|
</el-form-item>-->
|
||||||
|
<!-- <el-form-item label="照度" prop="illuminance">
|
||||||
|
<el-input v-model="form.illuminance" placeholder="请输入照度" />
|
||||||
|
</el-form-item>-->
|
||||||
|
<el-form-item label="噪声" prop="noise">
|
||||||
|
<el-input v-model="form.noise" placeholder="请输入噪声" />
|
||||||
|
</el-form-item>
|
||||||
|
<!-- <el-form-item label="硫化氢浓度" prop="concentration">
|
||||||
|
<el-input v-model="form.concentration" placeholder="请输入硫化氢浓度" />
|
||||||
|
</el-form-item>-->
|
||||||
|
<el-form-item label="记录时间" prop="recodeTime">
|
||||||
|
<el-date-picker clearable
|
||||||
|
v-model="form.recodeTime"
|
||||||
|
type="date"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
placeholder="请选择记录时间">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- <el-form-item label=" " prop="confirmPersonID">
|
||||||
|
<el-input v-model="form.confirmPersonID" placeholder="请输入 " />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label=" " prop="confirmTime">
|
||||||
|
<el-date-picker clearable
|
||||||
|
v-model="form.confirmTime"
|
||||||
|
type="date"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
placeholder="请选择 ">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label=" " prop="confirmFlag">
|
||||||
|
<el-input v-model="form.confirmFlag" 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 {
|
||||||
|
listRecordIOTInstant,
|
||||||
|
getRecordIOTInstant,
|
||||||
|
delRecordIOTInstant,
|
||||||
|
addRecordIOTInstant,
|
||||||
|
updateRecordIOTInstant }
|
||||||
|
from "@/api/ems/record/recordIOTInstant";
|
||||||
|
import { getMonitorInfoTree, listBaseMonitorInfo } from '@/api/ems/base/baseMonitorInfo'
|
||||||
|
import Treeselect from '@riophae/vue-treeselect'
|
||||||
|
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
|
||||||
|
export default {
|
||||||
|
name: "RecordIOTInstant",
|
||||||
|
components: {
|
||||||
|
Treeselect
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
workUnitName:null,
|
||||||
|
//下拉树List
|
||||||
|
baseMonitorInfoOptions: [],
|
||||||
|
//左侧树结构List
|
||||||
|
monitorInfoOptions: [],
|
||||||
|
//能原类型信息
|
||||||
|
baseMonitorInfoList: [],
|
||||||
|
monitorProps: {
|
||||||
|
children: 'children',
|
||||||
|
label: 'label'
|
||||||
|
},
|
||||||
|
// 记录时间时间范围
|
||||||
|
daterangeCollectTime: [],
|
||||||
|
// 记录时间时间范围
|
||||||
|
daterangeRecordTime: [],
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 物联网实时数据表格数据
|
||||||
|
recordIOTInstantList: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
params:{},
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
monitorId: null,
|
||||||
|
monitorName: null,
|
||||||
|
collectTime: null,
|
||||||
|
tempreture: null,
|
||||||
|
humidity: null,
|
||||||
|
illuminance: null,
|
||||||
|
noise: null,
|
||||||
|
concentration: null,
|
||||||
|
recodeTime: null,
|
||||||
|
alarmType: null,
|
||||||
|
confirmPersonID: null,
|
||||||
|
confirmTime: null,
|
||||||
|
confirmFlag: null,
|
||||||
|
|
||||||
|
|
||||||
|
monitorType: 4,
|
||||||
|
energyType: 4,
|
||||||
|
energyTypeId: 4,
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
// 表单校验
|
||||||
|
rules: {
|
||||||
|
|
||||||
|
},
|
||||||
|
columns: [
|
||||||
|
{ key: 0, label: `主键标识`, visible: true },
|
||||||
|
{ key: 1, label: `计量设备编号`, visible: true },
|
||||||
|
{ key: 2, label: `计量设备名称`, visible: true },
|
||||||
|
{ key: 3, label: `采集时间`, visible: true },
|
||||||
|
{ key: 4, label: `噪声`, visible: true },
|
||||||
|
/* { key: 5, label: `湿度`, visible: false },
|
||||||
|
{ key: 6, label: `照度`, visible: false },
|
||||||
|
{ key: 7, label: `噪声`, visible: false },
|
||||||
|
{ key: 8, label: `硫化氢浓度`, visible: false },*/
|
||||||
|
{ key: 5, label: `记录时间`, visible: true },
|
||||||
|
{ key: 6, label: `报警类型`, visible: true },
|
||||||
|
]
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
// const nowDate = this.parseTime(new Date(), '{y}-{m}-{d}')
|
||||||
|
// this.daterangeCollectTime[0] = nowDate + ' 00:00:00'
|
||||||
|
// this.daterangeCollectTime[1] = nowDate + ' 23:59:59'
|
||||||
|
|
||||||
|
// this.daterangeRecordTime[0] = nowDate + ' 00:00:00'
|
||||||
|
// this.daterangeRecordTime[1] = nowDate + ' 23:59:59'
|
||||||
|
this.getList();
|
||||||
|
this.getTreeselect()
|
||||||
|
this.getTreeMonitorInfo()
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
// 根据名称筛选计量设备树
|
||||||
|
workUnitName(val) {
|
||||||
|
this.$refs.tree.filter(val)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 转换计量设备信息数据结构 */
|
||||||
|
normalizer(node) {
|
||||||
|
if (node.children && !node.children.length) {
|
||||||
|
delete node.children
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
id: node.monitorCode,
|
||||||
|
label: node.monitorName,
|
||||||
|
children: node.children
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 查询计量设备信息下拉树结构 新增用*/
|
||||||
|
getTreeMonitorInfo() {
|
||||||
|
listBaseMonitorInfo({monitorType: 4}).then(response => {
|
||||||
|
this.baseMonitorInfoOptions = []
|
||||||
|
const data = { monitorCode: 0, monitorName: '顶级节点', children: [] }
|
||||||
|
data.children = this.handleTree(response.data, 'objId', 'parentId')
|
||||||
|
this.baseMonitorInfoOptions.push(data)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
/** 查询物联网实时数据列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
if (null != this.daterangeCollectTime && '' != this.daterangeCollectTime) {
|
||||||
|
this.queryParams.params['beginCollectTime'] = this.daterangeCollectTime[0]
|
||||||
|
this.queryParams.params['endCollectTime'] = this.daterangeCollectTime[1]
|
||||||
|
}
|
||||||
|
if (null != this.daterangeRecordTime && '' != this.daterangeRecordTime) {
|
||||||
|
this.queryParams.params['beginRecordTime'] = this.daterangeRecordTime[0]
|
||||||
|
this.queryParams.params['endRecordTime'] = this.daterangeRecordTime[1]
|
||||||
|
}
|
||||||
|
listRecordIOTInstant(this.queryParams).then(response => {
|
||||||
|
this.recordIOTInstantList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
objid: null,
|
||||||
|
monitorId: null,
|
||||||
|
monitorName: null,
|
||||||
|
collectTime: null,
|
||||||
|
tempreture: null,
|
||||||
|
humidity: null,
|
||||||
|
illuminance: null,
|
||||||
|
noise: null,
|
||||||
|
concentration: null,
|
||||||
|
recodeTime: null,
|
||||||
|
alarmType: null,
|
||||||
|
confirmPersonID: null,
|
||||||
|
confirmTime: null,
|
||||||
|
confirmFlag: null,
|
||||||
|
monitorType: 4,
|
||||||
|
energyType: 4,
|
||||||
|
energyTypeId: 4,
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.daterangeCollectTime = [];
|
||||||
|
this.daterangeRecordTime = [];
|
||||||
|
this.queryParams = {
|
||||||
|
params:{},
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
monitorId: null,
|
||||||
|
monitorName: null,
|
||||||
|
collectTime: null,
|
||||||
|
tempreture: null,
|
||||||
|
humidity: null,
|
||||||
|
illuminance: null,
|
||||||
|
noise: null,
|
||||||
|
concentration: null,
|
||||||
|
recodeTime: null,
|
||||||
|
alarmType: null,
|
||||||
|
confirmPersonID: null,
|
||||||
|
confirmTime: null,
|
||||||
|
confirmFlag: null
|
||||||
|
},
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
/** 查询计量设备信息下拉树结构 */
|
||||||
|
getTreeselect() {
|
||||||
|
getMonitorInfoTree({monitorType: 4}).then(response => {
|
||||||
|
this.monitorInfoOptions = response.data
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 筛选节点
|
||||||
|
filterNode(value, data) {
|
||||||
|
if (!value) return true
|
||||||
|
return data.label.indexOf(value) !== -1
|
||||||
|
},
|
||||||
|
// 节点单击事件
|
||||||
|
handleNodeClick(data) {
|
||||||
|
this.queryParams.monitorId = data.code
|
||||||
|
this.handleQuery()
|
||||||
|
},
|
||||||
|
// 多选框选中数据
|
||||||
|
handleSelectionChange(selection) {
|
||||||
|
this.ids = selection.map(item => item.objid)
|
||||||
|
this.single = selection.length!==1
|
||||||
|
this.multiple = !selection.length
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加物联网实时数据";
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
const objid = row.objid || this.ids
|
||||||
|
getRecordIOTInstant(objid).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改物联网实时数据";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
if (this.form.objid != null) {
|
||||||
|
updateRecordIOTInstant(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addRecordIOTInstant(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
handleDelete(row) {
|
||||||
|
const objids = row.objid || this.ids;
|
||||||
|
this.$modal.confirm('是否确认删除物联网实时数据编号为"' + objids + '"的数据项?').then(function() {
|
||||||
|
return delRecordIOTInstant(objids);
|
||||||
|
}).then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess("删除成功");
|
||||||
|
}).catch(() => {});
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('ems/record/recordIOTInstant/export', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `recordIOTInstant_${new Date().getTime()}.xlsx`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
@ -0,0 +1,483 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-row :gutter="28">
|
||||||
|
<el-col :span="5" :xs="24">
|
||||||
|
<div class="head-container">
|
||||||
|
<el-input
|
||||||
|
v-model="workUnitName"
|
||||||
|
placeholder="请输入物联网设备名称"
|
||||||
|
clearable
|
||||||
|
size="small"
|
||||||
|
prefix-icon="el-icon-search"
|
||||||
|
style="margin-bottom: 20px"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="head-container">
|
||||||
|
<el-tree
|
||||||
|
:data="monitorInfoOptions"
|
||||||
|
:props="monitorProps"
|
||||||
|
:expand-on-click-node="false"
|
||||||
|
:filter-node-method="filterNode"
|
||||||
|
ref="tree"
|
||||||
|
node-key="id"
|
||||||
|
default-expand-all
|
||||||
|
highlight-current
|
||||||
|
@node-click="handleNodeClick"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="19" :xs="24">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
|
||||||
|
label-width="100px"
|
||||||
|
>
|
||||||
|
<!-- <el-form-item label="计量设备编号" prop="monitorCode">-->
|
||||||
|
<!-- <el-input-->
|
||||||
|
<!-- v-model="queryParams.monitorCode"-->
|
||||||
|
<!-- placeholder="请输入计量设备编号"-->
|
||||||
|
<!-- clearable-->
|
||||||
|
<!-- @keyup.enter.native="handleQuery"-->
|
||||||
|
<!-- />-->
|
||||||
|
<!-- </el-form-item>-->
|
||||||
|
<el-form-item label="采集时间">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="daterangeCollectTime"
|
||||||
|
style="width: 340px"
|
||||||
|
value-format="yyyy-MM-dd HH:mm:ss"
|
||||||
|
type="datetimerange"
|
||||||
|
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-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<Chart ref="Chart1" class="chart1"/>
|
||||||
|
<!-- <Chart ref="Chart2" class="chart2"/> -->
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
listRecordIOTInstant,
|
||||||
|
getRecordIOTInstant, iotInstantList
|
||||||
|
} from '@/api/ems/record/recordIOTInstant'
|
||||||
|
import {getMonitorInfoTree} from '@/api/ems/base/baseMonitorInfo'
|
||||||
|
import Treeselect from '@riophae/vue-treeselect'
|
||||||
|
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
|
||||||
|
import {parseTime} from '@/utils/ruoyi'
|
||||||
|
import Chart from '@/components/Charts/Chart'
|
||||||
|
import * as echarts from 'echarts'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'CurrentIOTCurve',
|
||||||
|
dicts: ['collect_type'],
|
||||||
|
components: {
|
||||||
|
Chart,
|
||||||
|
Treeselect
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
//下拉树List
|
||||||
|
baseMonitorInfoOptions: [],
|
||||||
|
//左侧树结构List
|
||||||
|
monitorInfoOptions: [],
|
||||||
|
workUnitName: undefined,
|
||||||
|
//左侧树结构 检索设备名称
|
||||||
|
selectMonitorName: null,
|
||||||
|
//计量设备信息
|
||||||
|
baseMonitorInfoList: [],
|
||||||
|
// 采集方式时间范围
|
||||||
|
daterangeCollectTime: [],
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 电实时数据表格数据
|
||||||
|
dataList: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: '',
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
monitorId: null,
|
||||||
|
collectTime: null,
|
||||||
|
tempreture: null,
|
||||||
|
humidity: null,
|
||||||
|
illuminance: null,
|
||||||
|
noise: null,
|
||||||
|
concentration: null,
|
||||||
|
recordTime: null,
|
||||||
|
glys: null,
|
||||||
|
zxyg: null,
|
||||||
|
activePower: null,
|
||||||
|
reactivePower: null,
|
||||||
|
collectType: 4
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
monitorProps: {
|
||||||
|
children: 'children',
|
||||||
|
label: 'label'
|
||||||
|
},
|
||||||
|
// 表单校验
|
||||||
|
rules: {
|
||||||
|
objId: [
|
||||||
|
{required: true, message: '编号不能为空', trigger: 'blur'}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
columns: [
|
||||||
|
{key: 0, label: `主键标识`, visible: false},
|
||||||
|
{key: 1, label: `计量设备编号`, visible: true},
|
||||||
|
{key: 2, label: `采集时间`, visible: true},
|
||||||
|
{key: 3, label: `温度`, visible: true},
|
||||||
|
{key: 4, label: `湿度`, visible: true},
|
||||||
|
{key: 5, label: `照度`, visible: true},
|
||||||
|
{key: 6, label: `噪声`, visible: true},
|
||||||
|
{key: 7, label: `硫化氢浓度`, visible: true},
|
||||||
|
{key: 8, label: `记录时间`, visible: true},
|
||||||
|
{key: 9, label: `报警类型`, visible: true},
|
||||||
|
{key: 10, label: ``, visible: true},
|
||||||
|
{key: 11, label: ``, visible: false},
|
||||||
|
{key: 12, label: ``, visible: false},
|
||||||
|
{key: 13, label: ``, visible: true},
|
||||||
|
{key: 14, label: ``, visible: true}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
const nowDate = parseTime(new Date(), '{y}-{m}-{d}')
|
||||||
|
this.daterangeCollectTime[0] = nowDate + ' 00:00:00'
|
||||||
|
this.daterangeCollectTime[1] = nowDate + ' 23:59:59'
|
||||||
|
this.getTreeselect()
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
// 根据名称筛选计量设备树
|
||||||
|
workUnitName(val) {
|
||||||
|
this.$refs.tree.filter(val)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 转换计量设备信息数据结构 */
|
||||||
|
normalizer(node) {
|
||||||
|
if (node.children && !node.children.length) {
|
||||||
|
delete node.children
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
id: node.monitorId,
|
||||||
|
label: node.monitorName,
|
||||||
|
children: node.children
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 查询电实时数据列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true
|
||||||
|
this.queryParams.params = {}
|
||||||
|
if (null != this.daterangeCollectTime && '' != this.daterangeCollectTime) {
|
||||||
|
this.queryParams.params['beginCollectTime'] = this.daterangeCollectTime[0]
|
||||||
|
this.queryParams.params['endCollectTime'] = this.daterangeCollectTime[1]
|
||||||
|
}
|
||||||
|
console.log(this.monitorInfoOptions)
|
||||||
|
this.getChart()
|
||||||
|
},
|
||||||
|
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false
|
||||||
|
this.reset()
|
||||||
|
},
|
||||||
|
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
objId: null,
|
||||||
|
monitorId: null,
|
||||||
|
collectTime: null,
|
||||||
|
recordTime: null,
|
||||||
|
collectType: 4
|
||||||
|
}
|
||||||
|
this.resetForm('form')
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.queryParams.monitorId = null
|
||||||
|
this.resetForm('queryForm')
|
||||||
|
this.handleQuery()
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('ems/record/recordIOTInstant/export', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `recordIOTInstant_${new Date().getTime()}.xlsx`)
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 查询计量设备信息下拉树结构 */
|
||||||
|
getTreeselect() {
|
||||||
|
getMonitorInfoTree({monitorTypeList: [4]}).then(response => {
|
||||||
|
this.monitorInfoOptions = response.data
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 筛选节点 */
|
||||||
|
filterNode(value, data) {
|
||||||
|
if (!value) return true
|
||||||
|
return data.label.indexOf(value) !== -1
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 节点单击事件 */
|
||||||
|
handleNodeClick(data, type, a) {
|
||||||
|
console.log(type.parent.data)
|
||||||
|
console.log(a)
|
||||||
|
// this.queryParams.monitorTypeList = type
|
||||||
|
this.queryParams.monitorId = data.code
|
||||||
|
this.selectMonitorName = data.label
|
||||||
|
this.handleQuery()
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 物联网设备曲线 */
|
||||||
|
async getChart() {
|
||||||
|
if (this.queryParams.monitorId == null) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
let query = JSON.parse(JSON.stringify(this.queryParams))
|
||||||
|
const {data} = await iotInstantList(query)
|
||||||
|
let option1 = {
|
||||||
|
title: {
|
||||||
|
text: '物联网设备曲线',
|
||||||
|
// this.selectMonitorName
|
||||||
|
x: 'center'
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
data: data.monitorTypeArr,
|
||||||
|
right: 0,
|
||||||
|
},
|
||||||
|
grid: {
|
||||||
|
top: '15%',
|
||||||
|
bottom: '10%',
|
||||||
|
left: '3%',
|
||||||
|
right: '3%'
|
||||||
|
},
|
||||||
|
tooltip: {
|
||||||
|
trigger: 'axis',
|
||||||
|
// axisPointer: {
|
||||||
|
// type: 'shadow',
|
||||||
|
// label: {
|
||||||
|
// show: true
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
},
|
||||||
|
dataZoom: [{
|
||||||
|
type: 'slider'
|
||||||
|
}],
|
||||||
|
xAxis: {
|
||||||
|
data: data.dataList.map(e => e.collectTime),
|
||||||
|
axisLine: {
|
||||||
|
show: true, //隐藏X轴轴线
|
||||||
|
lineStyle: {
|
||||||
|
color: '#000'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// axisTick: {
|
||||||
|
// show: true //隐藏X轴刻度
|
||||||
|
// },
|
||||||
|
axisLabel: {
|
||||||
|
show: true,
|
||||||
|
textStyle: {
|
||||||
|
color: '#000' //X轴文字颜色
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
yAxis: [
|
||||||
|
{
|
||||||
|
type: 'value',
|
||||||
|
name: '数值',
|
||||||
|
nameTextStyle: {
|
||||||
|
color: '#000'
|
||||||
|
},
|
||||||
|
splitLine: {
|
||||||
|
show: false
|
||||||
|
},
|
||||||
|
axisTick: {
|
||||||
|
show: true
|
||||||
|
},
|
||||||
|
axisLine: {
|
||||||
|
show: true,
|
||||||
|
lineStyle: {
|
||||||
|
color: '#000'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
axisLabel: {
|
||||||
|
show: true,
|
||||||
|
textStyle: {
|
||||||
|
color: '#000'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
tooltip: {
|
||||||
|
show: data.monitorTypeArr.includes('温度') ? true : false
|
||||||
|
},
|
||||||
|
name: '温度',
|
||||||
|
type: data.type,
|
||||||
|
smooth: data.smooth, //平滑曲线显示
|
||||||
|
showAllSymbol: data.showAllSymbol, //显示所有图形。
|
||||||
|
symbol: data.symbol, //标记的图形为实心圆
|
||||||
|
symbolSize: data.symbolSize, //标记的大小
|
||||||
|
// itemStyle: {
|
||||||
|
// //折线拐点标志的样式
|
||||||
|
// color: "#058cff",
|
||||||
|
// },
|
||||||
|
// lineStyle: {
|
||||||
|
// color: "#058cff",
|
||||||
|
// },
|
||||||
|
// areaStyle: {
|
||||||
|
// color: "rgba(5,140,255, 0.2)",
|
||||||
|
// },
|
||||||
|
data: data.monitorTypeArr.includes('温度') ? data.dataList.map(e => e.tempreture) : []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
tooltip: {
|
||||||
|
show: data.monitorTypeArr.includes('湿度') ? true : false
|
||||||
|
},
|
||||||
|
name: '湿度',
|
||||||
|
type: data.type,
|
||||||
|
smooth: data.smooth, //平滑曲线显示
|
||||||
|
showAllSymbol: data.showAllSymbol, //显示所有图形。
|
||||||
|
symbol: data.symbol, //标记的图形为实心圆
|
||||||
|
symbolSize: data.symbolSize, //标记的大小
|
||||||
|
// itemStyle: {
|
||||||
|
// //折线拐点标志的样式
|
||||||
|
// color: "#058cff",
|
||||||
|
// },
|
||||||
|
// lineStyle: {
|
||||||
|
// color: "#058cff",
|
||||||
|
// },
|
||||||
|
// areaStyle: {
|
||||||
|
// color: "rgba(5,140,255, 0.2)",
|
||||||
|
// },
|
||||||
|
data: data.monitorTypeArr.includes('湿度') ? data.dataList.map(e => e.humidity) : []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
tooltip: {
|
||||||
|
show: data.monitorTypeArr.includes('噪声') ? true : false
|
||||||
|
},
|
||||||
|
name: '噪声',
|
||||||
|
type: data.type,
|
||||||
|
smooth: data.smooth, //平滑曲线显示
|
||||||
|
showAllSymbol: data.showAllSymbol, //显示所有图形。
|
||||||
|
symbol: data.symbol, //标记的图形为实心圆
|
||||||
|
symbolSize: data.symbolSize, //标记的大小
|
||||||
|
// itemStyle: {
|
||||||
|
// //折线拐点标志的样式
|
||||||
|
// color: "#058cff",
|
||||||
|
// },
|
||||||
|
// lineStyle: {
|
||||||
|
// color: "#058cff",
|
||||||
|
// },
|
||||||
|
// areaStyle: {
|
||||||
|
// color: "rgba(5,140,255, 0.2)",
|
||||||
|
// },
|
||||||
|
data: data.monitorTypeArr.includes('噪声') ? data.dataList.map(e => e.noise) : []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
tooltip: {
|
||||||
|
show: data.monitorTypeArr.includes('照度') ? true : false
|
||||||
|
},
|
||||||
|
name: '照度',
|
||||||
|
type: data.type,
|
||||||
|
smooth: data.smooth, //平滑曲线显示
|
||||||
|
showAllSymbol: data.showAllSymbol, //显示所有图形。
|
||||||
|
symbol: data.symbol, //标记的图形为实心圆
|
||||||
|
symbolSize: data.symbolSize, //标记的大小
|
||||||
|
// itemStyle: {
|
||||||
|
// //折线拐点标志的样式
|
||||||
|
// color: "#058cff",
|
||||||
|
// },
|
||||||
|
// lineStyle: {
|
||||||
|
// color: "#058cff",
|
||||||
|
// },
|
||||||
|
// areaStyle: {
|
||||||
|
// color: "rgba(5,140,255, 0.2)",
|
||||||
|
// },
|
||||||
|
data: data.monitorTypeArr.includes('照度') ? data.dataList.map(e => e.illuminance) : []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
tooltip: {
|
||||||
|
show: data.monitorTypeArr.includes('气体浓度') ? true : false
|
||||||
|
},
|
||||||
|
name: '气体浓度',
|
||||||
|
type: data.type,
|
||||||
|
smooth: data.smooth, //平滑曲线显示
|
||||||
|
showAllSymbol: data.showAllSymbol, //显示所有图形。
|
||||||
|
symbol: data.symbol, //标记的图形为实心圆
|
||||||
|
symbolSize: data.symbolSize, //标记的大小
|
||||||
|
// itemStyle: {
|
||||||
|
// //折线拐点标志的样式
|
||||||
|
// color: "#058cff",
|
||||||
|
// },
|
||||||
|
// lineStyle: {
|
||||||
|
// color: "#058cff",
|
||||||
|
// },
|
||||||
|
// areaStyle: {
|
||||||
|
// color: "rgba(5,140,255, 0.2)",
|
||||||
|
// },
|
||||||
|
data: data.monitorTypeArr.includes('气体浓度') ? data.dataList.map(e => e.concentration) : []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
console.log(option1)
|
||||||
|
this.$refs.Chart1.setData(option1)
|
||||||
|
|
||||||
|
echarts.connect(this.$refs.Chart1.chart)
|
||||||
|
// , this.$refs.Chart2.chart
|
||||||
|
this.$refs.Chart1.chart.on('datazoom', (e) => {
|
||||||
|
option1.dataZoom[0].start = e.start
|
||||||
|
option1.dataZoom[0].end = e.end
|
||||||
|
this.$refs.Chart1.setData(option1)
|
||||||
|
})
|
||||||
|
// this.$refs.Chart2.chart.on('datazoom', (e) => {
|
||||||
|
// option1.dataZoom[0].start = e.start
|
||||||
|
// option1.dataZoom[0].end = e.end
|
||||||
|
// this.$refs.Chart1.setData(option1)
|
||||||
|
// })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
.chart1 {
|
||||||
|
width: 100%;
|
||||||
|
height: 75vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chart2 {
|
||||||
|
width: 100%;
|
||||||
|
height: 40vh;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Loading…
Reference in New Issue