修改信息

IOT
夜笙歌 9 months ago
parent 4f52260139
commit c601a0b710

@ -11,7 +11,7 @@
<div class="span1" style="top: 29.8%;left: 24%;">升降状态</div>
<div class="span1" style="top: 36.2%;left: 24%;">实时位置</div>
<div class="info1" style="top: 17.3%;right: 64.5%;color:#a80d1b">{{ setDeviceStatus(DeviceInfo.deviceStatus) }}</div>
<div class="info1" style="top: 23.5%;right: 64.5%;">{{ DeviceInfo.runSpeed }}m/s</div>
<div class="info1" style="top: 23.5%;right: 64.5%;">{{ DeviceInfo.runSpeed }}mm/s</div>
<div class="info1" style="top: 29.8%;right: 64.5%;">{{ setLiftStatus(DeviceInfo.liftStatus) }}</div>
<div class="info1" style="top: 36.2%;right: 64.5%;">位置{{ DeviceInfo.realAddr }}</div>
@ -75,7 +75,7 @@
style="height: calc(100% - 30px);overflow: hidden;"
>
<div
v-for="(item, index) in AlarmInfo"
v-for="(item, index) in AlarmInfo.filter(e=>e.isAlarm !== 0)"
:key="index"
>
<div :style='"background-color:" + ((index % 2 === 0)? "#1077bc19":"#1077bc05") '>
@ -128,12 +128,12 @@
<el-dialog :visible.sync="InspectionVisible" title="巡检">
<el-table :data="InspectionData">
<el-table-column property="date" label="别名" width="150" />
<el-table-column property="name" label="距离" width="100" />
<el-table-column property="name" label="是否旋转" width="100" />
<el-table-column property="name" label="P" width="50" />
<el-table-column property="name" label="T" width="50" />
<el-table-column property="name" label="Z" width="50" />
<el-table-column property="busbarAlias" label="别名" width="150" />
<el-table-column property="busbarDist" label="距离" width="100" />
<el-table-column property="isRotate" label="是否旋转" width="100" />
<el-table-column property="wPanPos" label="P" width="50" />
<el-table-column property="wTiltPos" label="T" width="50" />
<el-table-column property="wZoomPos" label="Z" width="50" />
<el-table-column label="操作" >
<template slot-scope="scope">
<el-button type="primary" @click="inspection(scope.row)"></el-button>

Loading…
Cancel
Save