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

49 lines
1.3 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-09-18 14:19:09 +08:00
<view class="detail-content-title mb20">电压谐波畸变率越限4</view>
<image style="width:100%" src="/static/boxing3.jpeg" mode="widthFix" />
2023-02-27 14:56:08 +08:00
</view>
<view class="detail-content ">
2023-09-18 14:19:09 +08:00
<view class="detail-content-title mb20">5次电压谐波含有率越限</view>
<image style="width:100%" src="/static/boxing3.jpeg" mode="widthFix" />
2023-02-27 14:56:08 +08:00
</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>