Files
app-govern/pages/message/termDetail.vue

60 lines
1.9 KiB
Vue
Raw Normal View History

2023-02-27 14:56:08 +08:00
<template>
<Cn-page :loading='loading'>
<view slot='body'>
<view class='detail'>
2023-02-28 14:03:38 +08:00
<view class="detail-content " style="font-size:32rpx">
2023-02-27 14:56:08 +08:00
<!-- <view class="detail-content-title mb20">发生时间</view> -->
<view>2023-02-14</view>
</view>
<view class="detail-content ">
2023-08-24 15:35:45 +08:00
<view class="detail-content-title mb20">设备基础信息</view>
2023-02-27 14:56:08 +08:00
<view class="mb10">灿能园区NPQS_681</view>
<view>网络参数00-B7-8D-A8-00-D3</view>
</view>
<view class="detail-content ">
2023-08-24 15:35:45 +08:00
<view class="detail-content-title mb20">设备通讯信息</view>
<view class="mb10">NPQS_681通讯设备1次具体如下所示</view>
2023-02-27 14:56:08 +08:00
<view>2023-02-14 10:59:10至2023-02-14 10:59:57</view>
</view>
<view class="detail-content ">
2023-08-24 15:35:45 +08:00
<view class="detail-content-title mb20">设备告警信息</view>
2023-02-27 14:56:08 +08:00
<view class="mb10">暂无告警信息</view>
</view>
<view class="detail-content ">
2023-08-24 15:35:45 +08:00
<view class="detail-content-title mb20">设备流量信息</view>
2023-02-27 14:56:08 +08:00
<view class="mb10">NPQS_681的流量于2023-02-14 23:59:59占总流量的0.0%</view>
</view>
</view>
</view>
</Cn-page>
</template>
<script>
export default {
data () {
return {
loading: false
}
},
methods: {
}
}
</script>
<style lang='scss'>
.detail {
padding: 20rpx 0;
.detail-content {
padding: 20rpx;
background: #fff;
margin-bottom: 20rpx;
font-size: 26rpx;
.detail-content-title {
font-size: 32rpx;
color: #111;
font-weight: 700;
}
}
}
</style>