添加数据报表
parent
cea121f20a
commit
e3e0b966c0
@ -0,0 +1,27 @@
|
||||
import request from "../request";
|
||||
|
||||
//照片统计
|
||||
export function getphotoList(data) {
|
||||
return request({
|
||||
url: "/xymanager/terminal/listWithPhoto",
|
||||
method: "get",
|
||||
params: data,
|
||||
});
|
||||
}
|
||||
//获取电压-线路-杆塔等信息
|
||||
|
||||
export function getSearchInfo(data) {
|
||||
return request({
|
||||
url: "/xymanager/getLineAndGt",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
//获取实时图片数据
|
||||
export function getphotoApi(data) {
|
||||
return request({
|
||||
url: "/xymanager/getPhotoList",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
@ -0,0 +1,47 @@
|
||||
<template>
|
||||
<div class="reportDataBox">
|
||||
<!-- <div class="reoprtContain"></div> -->
|
||||
<el-tabs type="border-card">
|
||||
<el-tab-pane label="照片统计"> <photostatis></photostatis> </el-tab-pane>
|
||||
<el-tab-pane label="设备状态列表">设备状态查询</el-tab-pane>
|
||||
<!-- <el-tab-pane label="角色管理">角色管理</el-tab-pane>
|
||||
<el-tab-pane label="定时任务补偿">定时任务补偿</el-tab-pane> -->
|
||||
</el-tabs>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import {} from "@/utils/api/index";
|
||||
|
||||
import photostatis from "./photostatis/index";
|
||||
export default {
|
||||
name: "reportData",
|
||||
components: {
|
||||
photostatis,
|
||||
},
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
created() {},
|
||||
mounted() {},
|
||||
watch: {},
|
||||
methods: {},
|
||||
};
|
||||
</script>
|
||||
<style lang="less">
|
||||
.reportDataBox {
|
||||
width: calc(100% - 24px);
|
||||
height: calc(100% - 24px);
|
||||
padding: 12px 12px;
|
||||
|
||||
.el-tabs {
|
||||
height: 100%;
|
||||
.el-tabs__content {
|
||||
height: calc(100% - 69px);
|
||||
overflow: auto;
|
||||
.el-tab-pane {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
@ -0,0 +1,45 @@
|
||||
<template>
|
||||
<el-dialog
|
||||
class="ipDialog"
|
||||
title="历史IP信息"
|
||||
:visible.sync="isShow"
|
||||
:close-on-click-modal="false"
|
||||
width="420px"
|
||||
>
|
||||
<div class="ipContain">这里时ip</div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="isShow = false">关 闭</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</template>
|
||||
<script>
|
||||
import {} from "@/utils/api/index";
|
||||
|
||||
export default {
|
||||
props: {},
|
||||
|
||||
data() {
|
||||
return {
|
||||
isShow: false,
|
||||
rowData: "",
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
// 保存确定操作
|
||||
|
||||
display(row) {
|
||||
this.isShow = true;
|
||||
this.rowData = row;
|
||||
},
|
||||
hide() {
|
||||
this.isShow = false;
|
||||
},
|
||||
},
|
||||
|
||||
created() {},
|
||||
};
|
||||
</script>
|
||||
<style lang="less">
|
||||
.ipDialog {
|
||||
}
|
||||
</style>
|
@ -0,0 +1,359 @@
|
||||
<template>
|
||||
<div class="photoStatisBox">
|
||||
<div class="searchBox" ref="searchref">
|
||||
<el-form :inline="true" :model="formdata" class="demo-form-inline">
|
||||
<el-form-item label="电压等级" class="dyclass">
|
||||
<el-select v-model="formdata.dyid" @change="getSearchxl">
|
||||
<el-option
|
||||
v-for="item in dyOptions"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
>
|
||||
{{ item.name }}
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="线路名称" class="xlclass">
|
||||
<el-select v-model="formdata.lineid" @change="getSearchgt" filterable>
|
||||
<el-option
|
||||
v-for="item in xlOptions"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="杆塔名称" class="gtclass">
|
||||
<el-select v-model="formdata.towerid" filterable>
|
||||
<el-option
|
||||
v-for="item in gtOptions"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="通道" class="tdclass">
|
||||
<el-select v-model="formdata.channelid">
|
||||
<el-option
|
||||
v-for="item in tdOptions"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="开始日期" class="dateclass">
|
||||
<el-date-picker
|
||||
v-model="formdata.starttime"
|
||||
type="datetime"
|
||||
placeholder="开始日期"
|
||||
value-format="timestamp"
|
||||
:picker-options="pickerOptions"
|
||||
>
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="结束日期" class="dateclass">
|
||||
<el-date-picker
|
||||
v-model="formdata.endtime"
|
||||
type="datetime"
|
||||
placeholder="结束日期"
|
||||
value-format="timestamp"
|
||||
:picker-options="pickerOptions"
|
||||
>
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-input
|
||||
v-model="formdata.search"
|
||||
placeholder="请输入线路/杆塔/设备名称"
|
||||
clearable
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="onSubmit">查询</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="deviceTable">
|
||||
<el-table
|
||||
v-loading="photoLoading"
|
||||
ref="multipleTable"
|
||||
:data="photoList"
|
||||
tooltip-effect="dark"
|
||||
stripe
|
||||
style="width: 100%"
|
||||
height="calc(100% - 0px)"
|
||||
fit
|
||||
>
|
||||
<template slot="empty">
|
||||
<el-empty :image-size="160" description="暂无数据"></el-empty>
|
||||
</template>
|
||||
<el-table-column label="序号" width="50px">
|
||||
<template slot-scope="scope">
|
||||
{{ (page - 1) * pageSize + scope.$index + 1 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="id" label="ID" width="80px"> </el-table-column>
|
||||
<el-table-column prop="dyName" label="电压等级"> </el-table-column>
|
||||
<el-table-column prop="lineName" label="线路名称"> </el-table-column>
|
||||
<el-table-column prop="towerName" label="杆塔名称"> </el-table-column>
|
||||
<el-table-column prop="cmdid" label="装置id">
|
||||
<template slot-scope="scope">
|
||||
<el-link
|
||||
type="primary"
|
||||
@click.native.stop="handleShowPhoto(scope.row)"
|
||||
>
|
||||
{{ scope.row.cmdid }}</el-link
|
||||
></template
|
||||
>
|
||||
</el-table-column>
|
||||
<el-table-column prop="protocolName" label="规约"> </el-table-column>
|
||||
<el-table-column prop="lastHeartbeat" label="最后心跳时间">
|
||||
<template slot-scope="scope">
|
||||
<el-link
|
||||
type="primary"
|
||||
@click.native.stop="handleShowIp(scope.row)"
|
||||
>
|
||||
{{
|
||||
scope.row.lastHeartbeat == 0 || scope.row.lastHeartbeat == null
|
||||
? ""
|
||||
: $moment(scope.row.lastHeartbeat * 1000).format(
|
||||
"YYYY-MM-DD HH:mm:ss"
|
||||
)
|
||||
}}</el-link
|
||||
></template
|
||||
>
|
||||
</el-table-column>
|
||||
<el-table-column prop="firstPhotoTime" label="当天第一张照片时间">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.photoInfo.firstPhotoTime }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="lastRecvTime" label="照片最后接收时间">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.photoInfo.lastRecvTime }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="" label="重启次数"> </el-table-column>
|
||||
<el-table-column prop="" label="最后重启时间"> </el-table-column>
|
||||
<el-table-column prop="photoCount" label="照片数量">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.photoInfo.photoCount }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div class="pageNation">
|
||||
<el-pagination
|
||||
@current-change="handleCurrentChange"
|
||||
@size-change="handleSizeChange"
|
||||
:current-page="page"
|
||||
:page-size="pageSize"
|
||||
layout="sizes, prev, pager, next, jumper,total"
|
||||
:total="total"
|
||||
background
|
||||
>
|
||||
</el-pagination>
|
||||
</div>
|
||||
</div>
|
||||
<ipDialog ref="ipDialogref"></ipDialog>
|
||||
<photoDialog ref="photoDialogref"></photoDialog>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { getphotoList, getSearchInfo } from "@/utils/api/reportApi";
|
||||
import ipDialog from "./components/ipDialog";
|
||||
import photoDialog from "./components/photoList";
|
||||
export default {
|
||||
name: "photoStatisBox",
|
||||
components: {
|
||||
ipDialog,
|
||||
photoDialog,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
pickerOptions: {
|
||||
disabledDate(date) {
|
||||
return date.getTime() > Date.now(); // 禁用大于今天的日期
|
||||
},
|
||||
},
|
||||
photoList: [],
|
||||
dyOptions: [{ id: -1, name: "全部" }], //电压数据
|
||||
xlOptions: [{ id: -1, name: "全部" }], //线路数据
|
||||
gtOptions: [{ id: -1, name: "全部" }], //杆塔数据
|
||||
tdOptions: [
|
||||
{ id: -1, name: "全部" },
|
||||
{ id: 1, name: "通道1" },
|
||||
{ id: 2, name: "通道2" },
|
||||
{ id: 3, name: "通道3" },
|
||||
{ id: 4, name: "通道4" },
|
||||
], //通道数据
|
||||
formdata: {
|
||||
dyid: -1,
|
||||
lineid: -1,
|
||||
towerid: -1,
|
||||
channelid: -1,
|
||||
starttime: new Date(new Date().setHours(0, 0, 0, 0)).getTime(), // 设置开始时间为当天凌晨00:00:00的时间戳
|
||||
endtime: new Date(new Date().setHours(23, 59, 59, 0)).getTime(), // 设置结束时间为当天夜晚23:59:59的时间戳
|
||||
search: "",
|
||||
},
|
||||
page: 1, // 当前页数
|
||||
pageSize: 20, // 每页数量
|
||||
total: 0, //总条数
|
||||
photoLoading: false,
|
||||
};
|
||||
},
|
||||
created() {},
|
||||
mounted() {
|
||||
this.getSearchdy();
|
||||
},
|
||||
watch: {},
|
||||
methods: {
|
||||
//获取电压信息
|
||||
getSearchdy() {
|
||||
getSearchInfo({ type: 1 })
|
||||
.then((res) => {
|
||||
this.dyOptions = this.dyOptions.concat(res.data.list);
|
||||
console.log(this.dyOptions);
|
||||
this.getSearchxl();
|
||||
})
|
||||
.catch((err) => {});
|
||||
},
|
||||
//获取线路数据
|
||||
getSearchxl() {
|
||||
getSearchInfo({ type: 2, id: this.formdata.dyid })
|
||||
.then((res) => {
|
||||
this.xlOptions = this.xlOptions.concat(res.data.list);
|
||||
this.getSearchgt();
|
||||
})
|
||||
.catch((err) => {});
|
||||
},
|
||||
//获取杆塔数据
|
||||
getSearchgt() {
|
||||
getSearchInfo({ type: 3, id: this.formdata.lineid })
|
||||
.then((res) => {
|
||||
this.gtOptions = this.gtOptions.concat(res.data.list);
|
||||
this.onSubmit();
|
||||
})
|
||||
.catch((err) => {});
|
||||
},
|
||||
onSubmit() {
|
||||
if (this.formdata.starttime > this.formdata.endtime) {
|
||||
return this.$message({
|
||||
duration: 1500,
|
||||
showClose: true,
|
||||
message: "开始日期不能大于结束日期",
|
||||
type: "warning",
|
||||
});
|
||||
}
|
||||
this.page = 1;
|
||||
this.getPhotoFun();
|
||||
},
|
||||
//获取带有图片信息的内容
|
||||
getPhotoFun() {
|
||||
console.log(this.formdata);
|
||||
this.photoLoading = true;
|
||||
let params = {
|
||||
start: this.formdata.starttime / 1000,
|
||||
end: this.formdata.endtime / 1000,
|
||||
pageNum: this.page,
|
||||
pageSize: this.pageSize,
|
||||
};
|
||||
|
||||
// 根据条件添加参数
|
||||
if (this.formdata.dyid !== -1) {
|
||||
params.dyId = this.formdata.dyid;
|
||||
}
|
||||
if (this.formdata.lineid !== -1) {
|
||||
params.lineId = this.formdata.lineid;
|
||||
}
|
||||
if (this.formdata.towerid !== -1) {
|
||||
params.towerId = this.formdata.towerid;
|
||||
}
|
||||
if (this.formdata.channelid !== -1) {
|
||||
params.channelId = this.formdata.channelid;
|
||||
}
|
||||
if (this.formdata.search !== "") {
|
||||
params.search = this.formdata.search;
|
||||
}
|
||||
setTimeout(() => {
|
||||
getphotoList(params)
|
||||
.then((res) => {
|
||||
console.log(res);
|
||||
this.photoList = res.data.list;
|
||||
this.total = res.data.total;
|
||||
this.photoLoading = false;
|
||||
})
|
||||
.catch((err) => {
|
||||
this.photoLoading = false;
|
||||
});
|
||||
}, 100);
|
||||
},
|
||||
|
||||
//点击分页
|
||||
handleCurrentChange(val) {
|
||||
this.page = val;
|
||||
this.getPhotoFun();
|
||||
},
|
||||
|
||||
//每页条数
|
||||
handleSizeChange(val) {
|
||||
this.pageSize = val;
|
||||
this.getPhotoFun();
|
||||
},
|
||||
//点击装置查看历史图片
|
||||
handleShowPhoto(row) {
|
||||
let params = this.formdata;
|
||||
this.$refs.photoDialogref.display(row, params);
|
||||
},
|
||||
//点击最后心跳时间获取历史 ip和端口
|
||||
handleShowIp(row) {
|
||||
this.$refs.ipDialogref.display(row);
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="less">
|
||||
.photoStatisBox {
|
||||
height: 100%;
|
||||
.searchBox {
|
||||
.dyclass {
|
||||
.el-select {
|
||||
width: 120px;
|
||||
}
|
||||
}
|
||||
.xlclass {
|
||||
.el-select {
|
||||
width: 150px;
|
||||
}
|
||||
}
|
||||
.gtclass {
|
||||
.el-select {
|
||||
width: 180px;
|
||||
}
|
||||
}
|
||||
.tdclass {
|
||||
.el-select {
|
||||
width: 80px;
|
||||
}
|
||||
}
|
||||
.dateclass {
|
||||
.el-date-editor.el-input,
|
||||
.el-date-editor.el-input__inner {
|
||||
width: 190px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.deviceTable {
|
||||
height: calc(100% - 94px);
|
||||
//background: #fcc;
|
||||
.el-table {
|
||||
.cell {
|
||||
text-align: center;
|
||||
vertical-align: middle; /* 如果需要垂直居中 */
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue