联调app关键指标功能
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<!-- <view class="detail-content-title mb20">发生时间</view> -->
|
||||
<view>{{ detail.date }}</view>
|
||||
</view>
|
||||
<view class="detail-content" style="padding: 0px">
|
||||
<view class="detail-content" style="padding-top: 0px;padding-bottom: 0px">
|
||||
<view class="detail-content-title pb20 pt20 pl20">终端告警列表</view>
|
||||
</view>
|
||||
|
||||
@@ -15,14 +15,7 @@
|
||||
<view class="event-header">
|
||||
<view class="event-icon"
|
||||
:class="item.devType == 'Direct_Connected_Device' ? 'zl-bgc' : 'jc-bgc'">
|
||||
<!-- 动态图标:根据类型切换 -->
|
||||
<!-- <uni-icons
|
||||
custom-prefix="iconfont"
|
||||
type="icon-terminal-box-fill"
|
||||
size="35"
|
||||
color="#FF0000"
|
||||
></uni-icons> -->
|
||||
<!-- <Cn-icon-transient :name="`运行告警`" /> -->
|
||||
|
||||
<Cn-icon-transient :name="item.devType == 'Direct_Connected_Device' ? '治理设备' : '监测设备'" />
|
||||
<view class="badge1" v-if="item.status == 0"> </view>
|
||||
</view>
|
||||
@@ -47,28 +40,35 @@
|
||||
<view class="event-detail">
|
||||
<view v-if="item.dataDetails.onlineRate.isAbnormal">
|
||||
<text>在线率:
|
||||
{{item.dataDetails.onlineRate.value }}%
|
||||
<text class="integrity-value">{{ item.dataDetails.onlineRate.value }}%</text>
|
||||
</text>
|
||||
|
||||
</view>
|
||||
<view v-if="hasIntegrityAbnormal(item)" class="mt10">
|
||||
数据完整性:
|
||||
<view class="data-table">
|
||||
<view class="table-header">
|
||||
<text>监测点</text>
|
||||
<text>完整性</text>
|
||||
</view>
|
||||
<view class="table-row"
|
||||
v-for="value in item.dataDetails.integrity.monitorPoints.filter((p) => p.isAbnormal === true)">
|
||||
<text>{{ value.monitorName }}</text>
|
||||
<text>{{ value.value }}%</text>
|
||||
<view class="integrity-grid">
|
||||
<view
|
||||
v-for="(rowItems, rowIdx) in chunkedPoints(getAbnormalPoints(item))"
|
||||
:key="rowIdx"
|
||||
class="grid-row">
|
||||
<view
|
||||
v-for="(point, pIdx) in rowItems"
|
||||
:key="pIdx"
|
||||
class="param-group">
|
||||
<view class="param-title">
|
||||
<text>{{ point.monitorName }}</text>
|
||||
</view>
|
||||
<view class="integrity-value-row">
|
||||
<text class="integrity-value">{{ point.value }}%</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="item.warnCounts" class="mt10">
|
||||
<view v-if="item.warnCounts" class="mt10 ">
|
||||
终端告警 {{ item.warnCounts }} 次,详情如下:
|
||||
<view class="textBox">
|
||||
<view v-for="val in item.warnDetails" class="textBox mb5">
|
||||
<view class="textBox mt10">
|
||||
<view v-for="val in item.warnDetails" class="textBox mb5" style=" font-size: 26rpx;">
|
||||
{{ val.warnEventTime + '发生' + val.warnEventDesc }}
|
||||
</view>
|
||||
</view>
|
||||
@@ -107,7 +107,17 @@ export default {
|
||||
hasIntegrityAbnormal(item) {
|
||||
const points = item?.dataDetails?.integrity?.monitorPoints
|
||||
if (!Array.isArray(points) || !points.length) return false
|
||||
return points.every((p) => p.isAbnormal === true)
|
||||
return points.some((p) => p.isAbnormal === true)
|
||||
},
|
||||
getAbnormalPoints(item) {
|
||||
return item?.dataDetails?.integrity?.monitorPoints?.filter((p) => p.isAbnormal === true) || []
|
||||
},
|
||||
chunkedPoints(points) {
|
||||
const result = []
|
||||
for (let i = 0; i < points.length; i += 3) {
|
||||
result.push(points.slice(i, i + 3))
|
||||
}
|
||||
return result
|
||||
},
|
||||
init() {
|
||||
queryAlarmDetail({
|
||||
@@ -132,15 +142,32 @@ export default {
|
||||
padding: 20rpx 0;
|
||||
|
||||
.detail-content {
|
||||
|
||||
padding: 20rpx;
|
||||
background: #fff;
|
||||
margin-bottom: 20rpx;
|
||||
font-size: 28rpx;
|
||||
|
||||
.detail-content-title {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
padding-left: 20rpx;
|
||||
font-size: 30rpx;
|
||||
color: #111;
|
||||
font-weight: 700;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 8rpx;
|
||||
height: 28rpx;
|
||||
background: $uni-theme-color;
|
||||
border-radius: 3rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -208,37 +235,52 @@ export default {
|
||||
}
|
||||
|
||||
.textBox {
|
||||
max-height: 120rpx;
|
||||
max-height: 150rpx;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.data-table {
|
||||
margin-top: 10rpx;
|
||||
background-color: #fff;
|
||||
overflow: hidden;
|
||||
.integrity-grid {
|
||||
margin-top: 16rpx;
|
||||
}
|
||||
|
||||
.table-header,
|
||||
.table-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 15rpx 0rpx;
|
||||
border-bottom: 1rpx solid #eee;
|
||||
height: 20px;
|
||||
.grid-row {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 16rpx;
|
||||
margin-bottom: 16rpx;
|
||||
|
||||
text {
|
||||
text-align: center;
|
||||
font-size: 28rpx;
|
||||
flex: 1;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.table-header {
|
||||
padding: 0rpx;
|
||||
padding-bottom: 10rpx;
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
.param-group {
|
||||
min-width: 0;
|
||||
background: #f3f3f3;
|
||||
border-radius: 16rpx;
|
||||
padding: 16rpx 8rpx 12rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.param-title {
|
||||
font-size: 24rpx;
|
||||
color: #666666;
|
||||
// margin-bottom: 8rpx;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.integrity-value-row {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 2rpx;
|
||||
}
|
||||
|
||||
.integrity-value {
|
||||
font-size: 26rpx;
|
||||
font-weight: 700;
|
||||
color: #333333;
|
||||
}
|
||||
</style>
|
||||
@@ -98,9 +98,25 @@ export default {
|
||||
font-size: 28rpx;
|
||||
|
||||
.detail-content-title {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
padding-left: 20rpx;
|
||||
font-size: 30rpx;
|
||||
color: #111;
|
||||
font-weight: 700;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 8rpx;
|
||||
height: 28rpx;
|
||||
background: $uni-theme-color;
|
||||
border-radius: 3rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -190,9 +190,25 @@ export default {
|
||||
font-size: 28rpx;
|
||||
|
||||
.detail-content-title {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
padding-left: 20rpx;
|
||||
font-size: 30rpx;
|
||||
color: #111;
|
||||
font-weight: 700;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 8rpx;
|
||||
height: 28rpx;
|
||||
background: $uni-theme-color;
|
||||
border-radius: 3rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user