jc
parent
e3e0b966c0
commit
d0e2c84d62
@ -0,0 +1,128 @@
|
||||
<template>
|
||||
<el-dialog
|
||||
class="addDyDialog"
|
||||
:title="title"
|
||||
:visible.sync="isShow"
|
||||
:close-on-click-modal="false"
|
||||
width="470px"
|
||||
>
|
||||
<el-form
|
||||
label-position="left"
|
||||
ref="formInfo"
|
||||
label-width="100px"
|
||||
:rules="rules"
|
||||
:model="formdata"
|
||||
>
|
||||
<el-form-item label="电压名称:" prop="name">
|
||||
<el-input v-model="formdata.name" autocomplete="off"></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="isShow = false">取 消</el-button>
|
||||
<el-button type="primary" @click="submitForm()">确 定</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</template>
|
||||
<script>
|
||||
import { addDyJoggle, updateDyJoggle } from "@/utils/api/index";
|
||||
|
||||
export default {
|
||||
props: {
|
||||
title: String,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
isShow: false,
|
||||
|
||||
formdata: {},
|
||||
rules: {
|
||||
name: [{ required: true, message: "请输入电压名称", trigger: "blur" }],
|
||||
},
|
||||
};
|
||||
},
|
||||
mounted() {},
|
||||
methods: {
|
||||
//判断
|
||||
getdataform(val) {
|
||||
if (val == null) {
|
||||
return (this.formdata = {});
|
||||
}
|
||||
//this.formdata = val;
|
||||
this.formdata = JSON.parse(JSON.stringify(val));
|
||||
},
|
||||
// 保存确定操作
|
||||
submitForm() {
|
||||
this.$refs.formInfo.validate((valid) => {
|
||||
if (valid) {
|
||||
if (this.title == "新增") {
|
||||
addDyJoggle(this.formdata)
|
||||
.then((res) => {
|
||||
this.isShow = false;
|
||||
this.$message({
|
||||
duration: 1500,
|
||||
showClose: true,
|
||||
message: "添加成功",
|
||||
type: "success",
|
||||
});
|
||||
this.$parent.deviceList();
|
||||
})
|
||||
.catch((err) => {
|
||||
this.$message({
|
||||
duration: 1500,
|
||||
showClose: true,
|
||||
message: "添加失败",
|
||||
type: "error",
|
||||
});
|
||||
});
|
||||
} else {
|
||||
console.log(this.formdata);
|
||||
updateDyJoggle(this.formdata)
|
||||
.then((res) => {
|
||||
this.isShow = false;
|
||||
//this.$message.success("修改成功");
|
||||
this.$message({
|
||||
duration: 1500,
|
||||
showClose: true,
|
||||
message: "修改成功",
|
||||
type: "success",
|
||||
});
|
||||
this.$parent.deviceList();
|
||||
})
|
||||
.catch((err) => {
|
||||
//this.$message.error("修改失败");
|
||||
this.$message({
|
||||
duration: 1500,
|
||||
showClose: true,
|
||||
message: "修改失败",
|
||||
type: "error",
|
||||
});
|
||||
});
|
||||
}
|
||||
} else {
|
||||
console.log("error submit!!");
|
||||
return false;
|
||||
}
|
||||
});
|
||||
},
|
||||
display() {
|
||||
this.isShow = true;
|
||||
},
|
||||
hide() {
|
||||
this.isShow = false;
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="less">
|
||||
.addDyDialog {
|
||||
.el-select {
|
||||
width: 100%;
|
||||
}
|
||||
.el-input-number {
|
||||
width: 100%;
|
||||
}
|
||||
.el-input-number .el-input__inner {
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
</style>
|
@ -0,0 +1,271 @@
|
||||
<template>
|
||||
<div class="dyInfoBox">
|
||||
<div class="deviceBox">
|
||||
<div class="deviceBtnGroup">
|
||||
<h4>电压信息管理</h4>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-plus"
|
||||
@click.native.stop="handleAdddevice()"
|
||||
>新增</el-button
|
||||
>
|
||||
</div>
|
||||
<div class="searchBox">
|
||||
<el-form :inline="true" :model="formdata" class="demo-form-inline">
|
||||
<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-button type="primary" @click="onReset">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="deviceTable">
|
||||
<el-table
|
||||
ref="multipleTable"
|
||||
:data="tableDate"
|
||||
tooltip-effect="dark"
|
||||
stripe
|
||||
style="width: 100%"
|
||||
height="calc(100% - 40px)"
|
||||
@selection-change="handleSelectionChange"
|
||||
@row-click="handleRowClick"
|
||||
v-loading="loading"
|
||||
highlight-current-row
|
||||
:row-key="getRowKeys"
|
||||
>
|
||||
<template slot="empty">
|
||||
<el-empty :image-size="160" description="暂无数据"></el-empty>
|
||||
</template>
|
||||
<el-table-column prop="name" label="电压等级" show-overflow-tooltip>
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.name }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="createTime"
|
||||
label="创建时间"
|
||||
show-overflow-tooltip
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.createTime }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column fixed="right" label="操作" width="200">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
@click.native.stop="handleResive(scope.row)"
|
||||
type="text"
|
||||
>修改</el-button
|
||||
>
|
||||
<el-button
|
||||
type="text"
|
||||
class="deleteText"
|
||||
@click.native.stop="handleDelete(scope.row)"
|
||||
>删除</el-button
|
||||
>
|
||||
</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>
|
||||
</div>
|
||||
<!-- 新增电压 -->
|
||||
<addDyDialog :title="title" ref="addDialogref"></addDyDialog>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { getDyListJoggle, deleteDyJoggle } from "@/utils/api/index";
|
||||
import addDyDialog from "./components/addDyDialog.vue";
|
||||
|
||||
export default {
|
||||
name: "dyInformation",
|
||||
components: {
|
||||
addDyDialog,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
title: "", //弹窗标题
|
||||
tableDate: [],
|
||||
//multipleSelection: [], //获取当前选中
|
||||
page: 1, // 当前页数
|
||||
pageSize: 20, // 每页数量
|
||||
total: 0, //总条数
|
||||
loading: true,
|
||||
|
||||
formdata: {
|
||||
search: "",
|
||||
},
|
||||
};
|
||||
},
|
||||
created() {},
|
||||
mounted() {
|
||||
this.deviceList();
|
||||
},
|
||||
|
||||
methods: {
|
||||
getRowKeys(row) {
|
||||
return row.id;
|
||||
},
|
||||
|
||||
//查询
|
||||
onSubmit() {
|
||||
this.page = 1;
|
||||
this.deviceList();
|
||||
},
|
||||
//重置
|
||||
onReset() {
|
||||
this.formdata = {
|
||||
search: "",
|
||||
};
|
||||
this.page = 1;
|
||||
this.pageSize = 20;
|
||||
this.deviceList();
|
||||
},
|
||||
//获取数据列表
|
||||
deviceList() {
|
||||
this.loading = true;
|
||||
this.$set(this.formdata, "pageindex", this.page);
|
||||
this.$set(this.formdata, "pagesize", this.pageSize);
|
||||
getDyListJoggle(this.formdata)
|
||||
.then((res) => {
|
||||
this.tableDate = res.data.list;
|
||||
this.total = res.data.total;
|
||||
this.loading = false;
|
||||
})
|
||||
.catch((err) => {});
|
||||
},
|
||||
//点击行选中
|
||||
handleRowClick(row, column, event) {
|
||||
this.$refs.multipleTable.toggleRowSelection(row);
|
||||
},
|
||||
//获取选中的行
|
||||
handleSelectionChange(val) {
|
||||
this.multipleSelection = val;
|
||||
},
|
||||
|
||||
// 新建
|
||||
handleAdddevice() {
|
||||
this.title = "新增";
|
||||
this.$refs.addDialogref.display();
|
||||
this.$refs.addDialogref.getdataform(null);
|
||||
},
|
||||
|
||||
//修改
|
||||
handleResive(data) {
|
||||
this.title = "修改";
|
||||
this.$refs.addDialogref.display();
|
||||
this.$refs.addDialogref.getdataform(data);
|
||||
},
|
||||
|
||||
//删除数据
|
||||
handleDelete(data) {
|
||||
let deleteArr = [];
|
||||
deleteArr.push(data.id);
|
||||
console.log("aaaaaaaaaaaaaaaaaaaaaaaaaaa", deleteArr);
|
||||
this.$confirm("确定要删除记录吗,同时删除关联关系?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
deleteDyJoggle({ list: deleteArr }).then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.$message({
|
||||
duration: 1500,
|
||||
showClose: true,
|
||||
type: "success",
|
||||
message: "删除成功!",
|
||||
});
|
||||
this.deviceList(); //刷新
|
||||
} else {
|
||||
this.$message({
|
||||
duration: 1500,
|
||||
showClose: true,
|
||||
type: "error",
|
||||
message: "删除失败!",
|
||||
});
|
||||
}
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
this.$message({
|
||||
duration: 1500,
|
||||
showClose: true,
|
||||
type: "info",
|
||||
message: "已取消删除",
|
||||
});
|
||||
});
|
||||
},
|
||||
//点击分页
|
||||
handleCurrentChange(val) {
|
||||
this.page = val;
|
||||
this.deviceList();
|
||||
},
|
||||
//每页条数
|
||||
handleSizeChange(val) {
|
||||
this.pageSize = val;
|
||||
this.deviceList();
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="less">
|
||||
.dyInfoBox {
|
||||
width: calc(100% - 24px);
|
||||
height: calc(100% - 24px);
|
||||
padding: 12px 12px;
|
||||
background: #fff;
|
||||
|
||||
.deviceBox {
|
||||
border: 1px solid #dddddd;
|
||||
height: calc(100% - 24px);
|
||||
padding: 12px;
|
||||
border-radius: 4px;
|
||||
.searchBox {
|
||||
margin-top: 8px;
|
||||
.ml10 {
|
||||
margin-left: 10px;
|
||||
}
|
||||
.el-form {
|
||||
.dybox {
|
||||
.el-form-item__content {
|
||||
width: 120px;
|
||||
}
|
||||
}
|
||||
.xlbox {
|
||||
.el-form-item__content {
|
||||
width: 160px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.deviceBtnGroup {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.deviceTable {
|
||||
height: calc(100% - 94px);
|
||||
//background: #fcc;
|
||||
}
|
||||
}
|
||||
</style>
|
@ -0,0 +1,379 @@
|
||||
<template>
|
||||
<div class="equipmentStatusBox">
|
||||
<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="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-button type="primary">导出</el-button></el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="deviceTable">
|
||||
<el-table
|
||||
v-loading="termLoading"
|
||||
ref="multipleTable"
|
||||
:data="termAllList"
|
||||
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" fixed>
|
||||
<template slot-scope="scope">
|
||||
{{ (page - 1) * pageSize + scope.$index + 1 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column prop="dyName" label="电压等级" fixed> </el-table-column>
|
||||
<el-table-column prop="lineName" label="线路名称" min-width="180" fixed> </el-table-column>
|
||||
<el-table-column prop="towerName" label="杆塔名称" min-width="180" show-overflow-tooltip fixed> </el-table-column>
|
||||
<el-table-column prop="displayName" label="设备名称" min-width="180" fixed> </el-table-column>
|
||||
<el-table-column prop="cmdid" label="装置id" min-width="180" fixed>
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.cmdid }}
|
||||
</template
|
||||
>
|
||||
</el-table-column>
|
||||
<el-table-column prop="sim" label="SIM卡号" min-width="180"> </el-table-column>
|
||||
<el-table-column prop="netType" label="网络类型"> </el-table-column>
|
||||
<el-table-column prop="onlinestatus" label="状态"> </el-table-column>
|
||||
<el-table-column prop="model" label="装置型号" min-width="120"> </el-table-column>
|
||||
<el-table-column prop="bsManufacturer" label="装置厂家"> </el-table-column>
|
||||
<el-table-column prop="protocolName" label="规约版本" min-width="180"> </el-table-column>
|
||||
<el-table-column prop="workingDate" label="投运日期" min-width="140"> </el-table-column>
|
||||
|
||||
<el-table-column prop="onlinestatus" label="最新运行状态"> </el-table-column>
|
||||
<el-table-column prop="photoInfo.totalDays" label="在线天数"> </el-table-column>
|
||||
<el-table-column prop="photoInfo.photoCount" label="图片数量"> </el-table-column>
|
||||
<el-table-column prop="photoInfo.lastRecvTime" label="最后数据上送时间" min-width="140"> </el-table-column>
|
||||
<el-table-column prop="photoInfo.lastPhotoTime" label="最后图片上送时间" min-width="140"> </el-table-column>
|
||||
|
||||
|
||||
<el-table-column prop="" label="最新基本信息采集时间" min-width="140"> </el-table-column>
|
||||
<el-table-column prop="" label="装置名称"> </el-table-column>
|
||||
<el-table-column prop="" label="装置型号"> </el-table-column>
|
||||
<el-table-column prop="" label="装置版本号"> </el-table-column>
|
||||
<el-table-column prop="" label="生产厂家"> </el-table-column>
|
||||
<el-table-column prop="" label="生产日期"> </el-table-column>
|
||||
<el-table-column prop="" label="出厂编号"> </el-table-column>
|
||||
|
||||
<el-table-column prop="workingStatus.wsUpdateTime" label="最新工作状态采集时间" min-width="140">
|
||||
<template slot-scope="scope">
|
||||
|
||||
{{
|
||||
scope.row.workingStatus.wsUpdateTime == 0 || scope.row.workingStatus.wsUpdateTime == null
|
||||
? ""
|
||||
: $moment(scope.row.workingStatus.wsUpdateTime * 1000).format(
|
||||
"YYYY-MM-DD HH:mm:ss"
|
||||
)
|
||||
}}</template
|
||||
> </el-table-column>
|
||||
<el-table-column prop="batteryVoltage" label="电源电压"> </el-table-column>
|
||||
<el-table-column prop="opTemperature" label="工作温度"> </el-table-column>
|
||||
<el-table-column prop="batteryCapacity" label="电池电量"> </el-table-column>
|
||||
<el-table-column prop="floatingCharge" label="浮充状态"> </el-table-column>
|
||||
<el-table-column prop="totalWorkingTime" label="工作总时间"> </el-table-column>
|
||||
<el-table-column prop="workingTime" label="连续工作时间"> </el-table-column>
|
||||
<el-table-column prop="connectionState" label="网络连接状态"> </el-table-column>
|
||||
|
||||
|
||||
<el-table-column prop="workingStatus.wsUpdateTime" label="最新运行状态采集时间" min-width="140">
|
||||
<template slot-scope="scope">
|
||||
|
||||
{{
|
||||
scope.row.workingStatus.wsUpdateTime == 0 || scope.row.workingStatus.wsUpdateTime == null
|
||||
? ""
|
||||
: $moment(scope.row.workingStatus.wsUpdateTime * 1000).format(
|
||||
"YYYY-MM-DD HH:mm:ss"
|
||||
)
|
||||
}}</template
|
||||
>
|
||||
</el-table-column>
|
||||
<el-table-column prop="workingStatus.signalStrength4g" label="4G信号强度"> </el-table-column>
|
||||
<el-table-column prop="workingStatus.signalStrength2g" label="2G信号强度"> </el-table-column>
|
||||
<el-table-column prop="workingStatus.remainingRam" label="剩余运行内存"> </el-table-column>
|
||||
<el-table-column prop="workingStatus.remainingRom" label="剩余存储内"> </el-table-column>
|
||||
|
||||
<el-table-column prop="lastGps.updatetime" label="最新GPS位置采集时间" min-width="140"> </el-table-column>
|
||||
<el-table-column prop="lastGps.radius" label="半径"> </el-table-column>
|
||||
<el-table-column prop="lastGps.latitude" label="维度"> </el-table-column>
|
||||
<el-table-column prop="lastGps.longitude" label="经度"> </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 { gettermAllList, getSearchInfo } from "@/utils/api/reportApi";
|
||||
// import ipDialog from "./components/ipDialog";
|
||||
// import photoDialog from "./components/termAllList";
|
||||
export default {
|
||||
name: "photoStatisBox",
|
||||
components: {
|
||||
// ipDialog,
|
||||
// photoDialog,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
pickerOptions: {
|
||||
disabledDate(date) {
|
||||
return date.getTime() > Date.now(); // 禁用大于今天的日期
|
||||
},
|
||||
},
|
||||
termAllList: [],
|
||||
dyOptions: [{ id: -1, name: "全部" }], //电压数据
|
||||
xlOptions: [{ id: -1, name: "全部" }], //线路数据
|
||||
gtOptions: [{ id: -1, name: "全部" }], //杆塔数据
|
||||
|
||||
formdata: {
|
||||
dyid: -1,
|
||||
lineid: -1,
|
||||
towerid: -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, //总条数
|
||||
termLoading: 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.getAllFun();
|
||||
},
|
||||
//获取带有图片信息的内容
|
||||
getAllFun() {
|
||||
console.log(this.formdata);
|
||||
this.termLoading = 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(() => {
|
||||
gettermAllList(params)
|
||||
.then((res) => {
|
||||
console.log(res);
|
||||
this.termAllList = res.data.list;
|
||||
this.total = res.data.total;
|
||||
this.termLoading = false;
|
||||
})
|
||||
.catch((err) => {
|
||||
this.termLoading = false;
|
||||
});
|
||||
}, 100);
|
||||
},
|
||||
|
||||
//点击分页
|
||||
handleCurrentChange(val) {
|
||||
this.page = val;
|
||||
this.getAllFun();
|
||||
},
|
||||
|
||||
//每页条数
|
||||
handleSizeChange(val) {
|
||||
this.pageSize = val;
|
||||
this.getAllFun();
|
||||
},
|
||||
// //点击装置查看历史图片
|
||||
// handleShowPhoto(row) {
|
||||
// let params = this.formdata;
|
||||
// this.$refs.photoDialogref.display(row, params);
|
||||
// },
|
||||
// //点击最后心跳时间获取历史 ip和端口
|
||||
// handleShowIp(row) {
|
||||
// this.$refs.ipDialogref.display(row);
|
||||
// },
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="less">
|
||||
.equipmentStatusBox {
|
||||
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