Commit b9f16eb2 authored by lei's avatar lei
parents 05e51c15 4566cbde
......@@ -87,4 +87,13 @@ export function typeNameList(query) {
method: 'get',
params: query
})
}
//排水系统设备类型
export function draDeviceName(query) {
return request({
url: '/business/dra/base/deviceName',
method: 'get',
params: query
})
}
\ No newline at end of file
import request from '@/utils/request'
// 查询排水设备信息列表
export function listInfo(query) {
return request({
url: '/business/dra/devices/list',
method: 'get',
params: query
})
}
// 查询排水设备信息所有列表
export function listAllInfo(query) {
return request({
url: '/business/dra/devices/listAll',
method: 'get',
params: query
})
}
// 查询排水设备信息详细
export function getInfo(id) {
return request({
url: '/business/dra/devices/getInfo/' + id,
method: 'get'
})
}
// 新增排水设备信息
export function addInfo(data) {
return request({
url: '/business/dra/devices/add',
method: 'post',
data: data
})
}
// 修改排水设备信息
export function updateInfo(data) {
return request({
url: '/business/dra/devices/edit',
method: 'post',
data: data
})
}
// 删除排水设备信息
export function delInfo(id) {
return request({
url: '/business/dra/devices/remove/' + id,
method: 'get'
})
}
import request from '@/utils/request'
// 查询水泵历史信息列表
export function listSumpAlarmHistory(query) {
return request({
url: '/business/sump/alarm/history/list',
method: 'get',
params: query
})
}
// 查询水泵历史信息所有列表
export function listAllSumpHistory(query) {
return request({
url: '/business/pump/history/listAll',
method: 'get',
params: query
})
}
\ No newline at end of file
import request from '@/utils/request'
// 查询水泵历史信息列表
export function listSumpHistory(query) {
return request({
url: '/business/sump/history/list',
method: 'get',
params: query
})
}
// 查询水泵历史信息所有列表
export function listAllSumpHistory(query) {
return request({
url: '/business/pump/history/listAll',
method: 'get',
params: query
})
}
\ No newline at end of file
import request from '@/utils/request'
// 查询水泵历史信息列表
export function listHistory(query) {
return request({
url: '/business/pump/history/list',
method: 'get',
params: query
})
}
// 查询水泵历史信息所有列表
export function listAllHistory(query) {
return request({
url: '/business/pump/history/listAll',
method: 'get',
params: query
})
}
// 查询水泵历史信息详细
export function getHistory(id) {
return request({
url: '/business/pump/history/getInfo/' + id,
method: 'get'
})
}
// 新增水泵历史信息
export function addHistory(data) {
return request({
url: '/business/pump/history/add',
method: 'post',
data: data
})
}
// 修改水泵历史信息
export function updateHistory(data) {
return request({
url: '/business/pump/history/edit',
method: 'post',
data: data
})
}
// 删除水泵历史信息
export function delHistory(id) {
return request({
url: '/business/pump/history/remove/' + id,
method: 'get'
})
}
// 查询水泵历史信息列表
export function listWarterPumpAlarmHis(query) {
return request({
url: '/business/pump/alarm/history/list',
method: 'get',
params: query
})
}
// 修改水泵历史信息
export function updateWarterPumpAlarmHis(data) {
return request({
url: '/business/pump/alarm/history/edit',
method: 'post',
data: data
})
}
\ No newline at end of file
import request from '@/utils/request'
// 查询水泵开关历史信息列表
export function listPumpStatusHistory(query) {
return request({
url: '/business/pump/status/list',
method: 'get',
params: query
})
}
<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="deviceName">
<el-input
v-model="queryParams.deviceName"
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"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
>删除</el-button>
</el-col>
<!-- <el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
>导出</el-button>
</el-col> -->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="infoList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="设备编号" align="center" prop="deviceId" />
<el-table-column label="设备名称" align="center" prop="deviceName" />
<el-table-column label="设备安装位置" align="center" prop="installationLocation" />
<el-table-column label="设备类型" align="center" prop="deviceType">
<template slot-scope="scope">
<dict-tag :options="dict.type.drainage_dev_type" :value="scope.row.deviceType"/>
</template>
</el-table-column>
<el-table-column label="液位高度预警值" align="center" prop="heghtThreshold" />
<el-table-column label="电机电流预警值" align="center" prop="motorCurrentAlert" />
<el-table-column label="电机轴承温度预警值" align="center" prop="motorBearingTempAlert" />
<el-table-column label="水泵轴承温度预警值" align="center" prop="pumpBearingTempAlert" />
<el-table-column label="水泵流量预警值" align="center" prop="pumpFlowAlert" />
<el-table-column label="排水管路压力预警值" align="center" prop="drainagePressureAlert" />
<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)"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除</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="700px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="140px">
<el-form-item label="设备名称" prop="deviceName">
<el-input v-model="form.deviceName" placeholder="请输入设备名称" />
</el-form-item>
<el-form-item label="设备编号" prop="deviceId">
<el-input :disabled="disabledType" v-model="form.deviceId" placeholder="请输入设备编号" />
</el-form-item>
<el-form-item label="设备安装位置" prop="installationLocation">
<el-input v-model="form.installationLocation" placeholder="请输入设备安装位置" />
</el-form-item>
<el-form-item label="设备类型" prop="deviceType">
<el-select @change="deviceTypeChange" v-model="form.deviceType" placeholder="请选择设备类型" :disabled="disabledType">
<el-option
v-for="dict in dict.type.drainage_dev_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
<div v-show="form.deviceType==='1'">
<el-form-item label="电机电流预警值" prop="motorCurrentAlert">
<el-input v-model="form.motorCurrentAlert" placeholder="请输入电机电流预警值" />
</el-form-item>
<el-form-item label="电机轴承温度预警值" prop="motorBearingTempAlert">
<el-input v-model="form.motorBearingTempAlert" placeholder="请输入电机轴承温度预警值" />
</el-form-item>
<el-form-item label="水泵轴承温度预警值" prop="pumpBearingTempAlert">
<el-input v-model="form.pumpBearingTempAlert" placeholder="请输入水泵轴承温度预警值" />
</el-form-item>
<el-form-item label="水泵流量预警值" prop="pumpFlowAlert">
<el-input v-model="form.pumpFlowAlert" placeholder="请输入水泵流量预警值" />
</el-form-item>
<el-form-item label="排水管路压力预警值" prop="drainagePressureAlert">
<el-input v-model="form.drainagePressureAlert" placeholder="请输入排水管路压力预警值" />
</el-form-item>
</div>
<div v-show="form.deviceType==='2'">
<el-form-item label="液位高度预警值" prop="heghtThreshold">
<el-input v-model="form.heghtThreshold" placeholder="请输入液位高度预警值" />
</el-form-item>
</div>
</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 {getInfo, listInfo, addInfo, updateInfo, delInfo } from "@/api/tyler/drainageDev";
export default {
name: "Info",
dicts: ['drainage_dev_type'],
data() {
return {
// 根路径
baseURL: process.env.VUE_APP_BASE_API,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 排水设备信息表格数据
infoList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
deviceId: null,
deviceName: null,
installationLocation: null,
deviceType: null,
heghtThreshold: null,
motorCurrentAlert: null,
motorBearingTempAlert: null,
pumpBearingTempAlert: null,
pumpFlowAlert: null,
drainagePressureAlert: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
deviceName: [
{ required: true, message: "设备名称不能为空", trigger: "blur" }
],
deviceId: [
{ required: true, message: "设备编号不能为空", trigger: "blur" }
],
installationLocation: [
{ required: true, message: "设备安装位置不能为空", trigger: "blur" }
],
deviceType: [
{ required: true, message: "设备类型不能为空", trigger: "change" }
]
},
disabledType:false,
};
},
created() {
this.getList();
},
methods: {
/** 查询排水设备信息列表 */
getList() {
this.loading = true;
listInfo(this.queryParams).then(response => {
this.infoList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
deviceId: null,
deviceName: null,
installationLocation: null,
deviceType: null,
heghtThreshold: null,
motorCurrentAlert: null,
motorBearingTempAlert: null,
pumpBearingTempAlert: null,
pumpFlowAlert: null,
drainagePressureAlert: null,
};
this.resetForm("form");
},
deviceTypeChange(val){
// console.log(val,'val')
if(val==1){
this.form.heghtThreshold = null
}else if(val==2){
this.form.motorCurrentAlert = null
this.form.motorBearingTempAlert = null
this.form.pumpBearingTempAlert = null
this.form.pumpFlowAlert = null
this.form.drainagePressureAlert = null
}
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.disabledType = false;
this.title = "添加排水设备信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.disabledType = true;
this.title = "修改排水设备信息";
this.form = { ...row };
// console.log('form.deviceType:', this.form.deviceType); // 调试输出
this.open = false; // 关闭弹窗
this.$nextTick(() => {
this.open = true; // 重新打开弹窗,强制重新渲染
});
// const id = row.id || this.ids
// getInfo(id).then(response => {
// this.form = response.data;
// this.open = true;
// this.title = "修改排水设备信息";
// });
},
/** 提交按钮 */
submitForm() {
if(this.form.deviceType==1){
this.form.heghtThreshold = null
}else if(this.form.deviceType==2){
this.form.motorCurrentAlert = null
this.form.motorBearingTempAlert = null
this.form.pumpBearingTempAlert = null
this.form.pumpFlowAlert = null
this.form.drainagePressureAlert = null
}
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateInfo(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addInfo(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除?').then(function() {
return delInfo(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('business/info/export', {
...this.queryParams
}, `info_${new Date().getTime()}.xlsx`)
}
}
};
</script>
<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="sumpName">
<el-select v-model="queryParams.sumpName" placeholder="设备名称" clearable>
<el-option
v-for="dict in devList"
:key="dict.name"
:label="dict.name"
:value="dict.name"
/>
</el-select>
</el-form-item>
<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-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="historyList" @selection-change="handleSelectionChange">
<el-table-column label="设备名称" align="center" prop="sumpName" />
<el-table-column label="设备编号" align="center" prop="sumpId" />
<el-table-column label="设备安装位置" align="center" prop="installationLocation" />
<el-table-column label="液位高度(m)" align="center" prop="heghtThreshold" />
<el-table-column label="报警时间" align="center" prop="alarmTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.alarmTime) }}</span>
</template>
</el-table-column>
<el-table-column label="状态" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
type="primary"
@click="handleUpdate(scope.row)"
v-if="scope.row.status==1"
>处置</el-button>
<span v-else>已处置</span>
</template>
</el-table-column>
<el-table-column label="解除报警时间" align="center" prop="delAlarmTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.delAlarmTime) }}</span>
</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="700px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="140px">
<el-form-item label="解除原因" prop="delAlarmResion">
<el-input type="textarea" v-model="form.delAlarmResion" placeholder="请输入解除原因" />
</el-form-item>
<el-form-item label="解除报警时长(h)" prop="time">
<el-input v-model="form.time" placeholder="请输入解除报警时长(h)" />
</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 {listSumpAlarmHistory, updateWarterPumpAlarmHis} from "@/api/tyler/waterLevelAlarm";
import {draDeviceName} from "@/api/tyler/common";
export default {
name: "History",
data() {
return {
// 根路径
baseURL: process.env.VUE_APP_BASE_API,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 设备历史信息表格数据
historyList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
sumpId: null,
sumpName: null,
motorCurrent: null,
motorBearingTemp: null,
pumpBearingTemp: null,
pumpFlow: null,
drainagePressure: null,
monitoringTime: null
},
// 表单参数
form: {},
// 表单校验
rules: {},
// 日期范围
dateRange: [],
devList: [],
};
},
created() {
draDeviceName({typeId:2}).then(res => {
this.devList = res.data;
})
this.getList();
},
methods: {
/** 查询设备历史信息列表 */
getList() {
this.loading = true;
listSumpAlarmHistory(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
this.historyList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
delAlarmResion:null,
time:null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.dateRange = []
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加设备历史信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.form.id = row.id;
this.open = true;
// getHistory(id).then(response => {
// this.form = response.data;
// this.open = true;
// this.title = "修改设备历史信息";
// });
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateWarterPumpAlarmHis(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addHistory(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除设备历史信息编号为"' + ids + '"的数据项?').then(function() {
return delHistory(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('business/history/export', {
...this.queryParams
}, `history_${new Date().getTime()}.xlsx`)
}
}
};
</script>
<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="sumpName">
<el-select v-model="queryParams.sumpName" placeholder="设备名称" clearable>
<el-option
v-for="dict in devList"
:key="dict.value"
:label="dict.name"
:value="dict.name"
/>
</el-select>
</el-form-item>
<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-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="historyList">
<el-table-column label="设备名称" align="center" prop="sumpName" />
<el-table-column label="设备编号" align="center" prop="sumpId" />
<el-table-column label="设备安装位置" align="center" prop="installationLocation" />
<el-table-column label="液位高度(m)" align="center" prop="heghtThreshold" />
<el-table-column label="监测时间" align="center" prop="time" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.time) }}</span>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import {getHistory, listSumpHistory} from "@/api/tyler/waterLevelHis";
import {draDeviceName} from "@/api/tyler/common";
export default {
name: "History",
data() {
return {
// 根路径
baseURL: process.env.VUE_APP_BASE_API,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 设备历史信息表格数据
historyList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
sumpName: null,
},
// 表单参数
form: {},
// 表单校验
rules: {},
// 日期范围
dateRange: [],
devList: [],
};
},
created() {
draDeviceName({typeId:2}).then(res => {
this.devList = res.data;
})
this.getList();
},
methods: {
/** 查询设备历史信息列表 */
getList() {
this.loading = true;
listSumpHistory(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
this.historyList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.dateRange = []
this.resetForm("queryForm");
this.handleQuery();
},
}
};
</script>
<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="pumpName">
<el-select v-model="queryParams.pumpName" placeholder="水泵名称" clearable>
<el-option
v-for="dict in devList"
:key="dict.name"
:label="dict.name"
:value="dict.name"
/>
</el-select>
</el-form-item>
<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-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="historyList" @selection-change="handleSelectionChange">
<el-table-column label="水泵名称" align="center" prop="pumpName" />
<el-table-column label="水泵编号" align="center" prop="pumpId" />
<el-table-column label="水泵安装位置" align="center" prop="installationLocation" />
<el-table-column label="报警项" align="center" prop="alarmProduct" />
<el-table-column label="监测值" align="center" prop="alarmValue" />
<el-table-column label="报警时间" align="center" prop="alarmTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.alarmTime) }}</span>
</template>
</el-table-column>
<el-table-column label="状态" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
type="primary"
@click="handleUpdate(scope.row)"
v-if="scope.row.status==1"
>处置</el-button>
<span v-else>已处置</span>
</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="700px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="140px">
<el-form-item label="解除原因" prop="delAlarmResion">
<el-input type="textarea" v-model="form.delAlarmResion" placeholder="请输入解除原因" />
</el-form-item>
<el-form-item label="解除报警时长(h)" prop="time">
<el-input v-model="form.time" placeholder="请输入解除报警时长(h)" />
</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 {listWarterPumpAlarmHis, updateWarterPumpAlarmHis} from "@/api/tyler/waterPumpHis";
import {draDeviceName} from "@/api/tyler/common";
export default {
name: "History",
data() {
return {
// 根路径
baseURL: process.env.VUE_APP_BASE_API,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 水泵历史信息表格数据
historyList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
pumpId: null,
pumpName: null,
motorCurrent: null,
motorBearingTemp: null,
pumpBearingTemp: null,
pumpFlow: null,
drainagePressure: null,
monitoringTime: null
},
// 表单参数
form: {},
// 表单校验
rules: {},
// 日期范围
dateRange: [],
devList: [],
};
},
created() {
draDeviceName({typeId:1}).then(res => {
this.devList = res.data;
})
this.getList();
},
methods: {
/** 查询水泵历史信息列表 */
getList() {
this.loading = true;
listWarterPumpAlarmHis(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
this.historyList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
delAlarmResion:null,
time:null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.dateRange = []
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加水泵历史信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.form.id = row.id;
this.open = true;
// getHistory(id).then(response => {
// this.form = response.data;
// this.open = true;
// this.title = "修改水泵历史信息";
// });
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateWarterPumpAlarmHis(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addHistory(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除水泵历史信息编号为"' + ids + '"的数据项?').then(function() {
return delHistory(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('business/history/export', {
...this.queryParams
}, `history_${new Date().getTime()}.xlsx`)
}
}
};
</script>
<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="pumpName">
<el-select v-model="queryParams.pumpName" placeholder="水泵名称" clearable>
<el-option
v-for="dict in devList"
:key="dict.name"
:label="dict.name"
:value="dict.name"
/>
</el-select>
</el-form-item>
<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-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="historyList" @selection-change="handleSelectionChange">
<el-table-column label="水泵名称" align="center" prop="pumpName" />
<el-table-column label="水泵编号" align="center" prop="pumpId" />
<el-table-column label="电机电流" align="center" prop="motorCurrent" />
<el-table-column label="电机轴承温度" align="center" prop="motorBearingTemp" />
<el-table-column label="水泵轴承温度" align="center" prop="pumpBearingTemp" />
<el-table-column label="水泵流量" align="center" prop="pumpFlow" />
<el-table-column label="排水管路压力" align="center" prop="drainagePressure" />
<el-table-column label="监测时间" align="center" prop="monitoringTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.monitoringTime) }}</span>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import {getHistory, listHistory} from "@/api/tyler/waterPumpHis";
import {draDeviceName} from "@/api/tyler/common";
export default {
name: "History",
data() {
return {
// 根路径
baseURL: process.env.VUE_APP_BASE_API,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 水泵历史信息表格数据
historyList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
pumpId: null,
pumpName: null,
motorCurrent: null,
motorBearingTemp: null,
pumpBearingTemp: null,
pumpFlow: null,
drainagePressure: null,
monitoringTime: null
},
// 表单参数
form: {},
// 表单校验
rules: {},
// 日期范围
dateRange: [],
devList: [],
};
},
created() {
draDeviceName({typeId:1}).then(res => {
this.devList = res.data;
})
this.getList();
},
methods: {
/** 查询水泵历史信息列表 */
getList() {
this.loading = true;
listHistory(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
this.historyList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
pumpId: null,
pumpName: null,
motorCurrent: null,
motorBearingTemp: null,
pumpBearingTemp: null,
pumpFlow: null,
drainagePressure: null,
monitoringTime: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.dateRange = []
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加水泵历史信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getHistory(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改水泵历史信息";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateHistory(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addHistory(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除水泵历史信息编号为"' + ids + '"的数据项?').then(function() {
return delHistory(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('business/history/export', {
...this.queryParams
}, `history_${new Date().getTime()}.xlsx`)
}
}
};
</script>
<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="pumpName">
<el-select v-model="queryParams.pumpName" placeholder="水泵名称" clearable>
<el-option
v-for="dict in devList"
:key="dict.name"
:label="dict.name"
:value="dict.name"
/>
</el-select>
</el-form-item>
<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-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="historyList" @selection-change="handleSelectionChange">
<el-table-column label="水泵名称" align="center" prop="pumpName" />
<el-table-column label="水泵编号" align="center" prop="pumpId" />
<el-table-column label="水泵位置" align="center" prop="installationLocation" />
<el-table-column label="水泵状态" align="center" prop="status" >
<template slot-scope="scope">
<el-tag type="success" v-if="scope.row.status==1">开启</el-tag>
<el-tag type="danger" v-else>关闭</el-tag>
</template>
</el-table-column>
<el-table-column label="监测时间" align="center" prop="time" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.time) }}</span>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import {getHistory, listPumpStatusHistory} from "@/api/tyler/waterPumpSwitchHis";
import {draDeviceName} from "@/api/tyler/common";
export default {
name: "History",
data() {
return {
// 根路径
baseURL: process.env.VUE_APP_BASE_API,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 水泵历史信息表格数据
historyList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
pumpId: null,
pumpName: null,
motorCurrent: null,
motorBearingTemp: null,
pumpBearingTemp: null,
pumpFlow: null,
drainagePressure: null,
monitoringTime: null
},
// 表单参数
form: {},
// 表单校验
rules: {},
// 日期范围
dateRange: [],
devList: [],
};
},
created() {
draDeviceName({typeId:1}).then(res => {
this.devList = res.data;
})
this.getList();
},
methods: {
/** 查询水泵历史信息列表 */
getList() {
this.loading = true;
listPumpStatusHistory(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
this.historyList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
pumpId: null,
pumpName: null,
motorCurrent: null,
motorBearingTemp: null,
pumpBearingTemp: null,
pumpFlow: null,
drainagePressure: null,
monitoringTime: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.dateRange = []
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加水泵历史信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getHistory(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改水泵历史信息";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateHistory(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addHistory(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除水泵历史信息编号为"' + ids + '"的数据项?').then(function() {
return delHistory(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('business/history/export', {
...this.queryParams
}, `history_${new Date().getTime()}.xlsx`)
}
}
};
</script>
<template>
<div class="app-container">
<div style="width: 500px; ">
<video width="500" controls="" autoplay="" name="media">
<source :src="`${previewUrl}${videoData}`" type="video/mp4">
<div v-if="videoData">
<video width="500" controls autoplay name="media">
<source :src="videoData" type="video/mp4">
</video>
</div>
<div v-else>
加载中...
</div>
<div class="upv">
<el-upload
ref="upload"
......@@ -75,18 +78,21 @@ export default {
name:null,
videoPath:null
},
videoData:'',
videoData:null,
fileSize:1024,
}
},
mounted() {
this.$nextTick(function () {
this.getList()
});
created() {
this.getList()
},
methods: {
getList(){
this.videoData = null;
listVideo().then(res => {
this.videoData = res.data
this.videoData = this.previewUrl + res.data;
this.$nextTick(() => {
this.$forceUpdate();
});
})
},
//上传图片
......
......@@ -162,7 +162,7 @@
},
created() {
typeNameList().then(res => {
console.log(res,'res')
// console.log(res,'res')
this.typeName = res.data
})
this.getList();
......@@ -204,9 +204,10 @@
},
/** 重置按钮操作 */
resetQuery() {
this.dateRange = [];
this.resetForm("queryForm");
this.handleQuery();
this.dateRange = [];
},
// 多选框选中数据
handleSelectionChange(selection) {
......
......@@ -37,6 +37,7 @@
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
>修改预警值</el-button>
</template>
......@@ -66,7 +67,7 @@
</el-form-item>
<el-form-item label="预警阈值" prop="threshold">
<el-input v-model="form.threshold" placeholder="请输入预警阈值" />
<el-input-number v-model="form.threshold" :min="0" label="预警阈值"></el-input-number>
</el-form-item>
......
......@@ -100,7 +100,7 @@
},
created() {
typeNameList().then(res => {
console.log(res,'res')
// console.log(res,'res')
this.typeName = res.data
})
this.getList();
......@@ -139,9 +139,9 @@
},
/** 重置按钮操作 */
resetQuery() {
this.dateRange = [];
this.resetForm("queryForm");
this.handleQuery();
this.dateRange = [];
},
// 多选框选中数据
handleSelectionChange(selection) {
......
......@@ -64,7 +64,7 @@
<span>{{ parseTime(scope.row.leaveTime) }}</span>
</template>
</el-table-column>
<el-table-column label="停留时间" align="center" prop="residenceTime" />
<el-table-column label="停留时间(h)" align="center" prop="residenceTime" />
</el-table>
......
......@@ -212,11 +212,13 @@ export default {
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.dateRange = [];
this.resetForm("queryForm");
this.handleQuery();
},
......
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