Files
app-govern/pages/home/wentaiyuexianjiancedianDetail.vue

39 lines
887 B
Vue
Raw Normal View History

2023-01-13 16:32:56 +08:00
<template>
<Rc-page :loading='loading'>
<view slot='body'>
<view class='wentaiyuexianDetail'>
<view class="title">福州长乐变电站测试监测点1发生稳态越限10次</view>
<view class="des">3次谐波电压越限3次5次谐波电压越限2次电压总畸变率越限10次电流畸变率8次电流畸变率8次</view>
</view>
</view>
</Rc-page>
</template>
<script>
export default {
data () {
return {
loading: false
}
},
methods: {
}
}
</script>
<style lang='scss'>
.wentaiyuexianDetail {
padding: 34rpx;
box-sizing: border-box;
.des {
font-size: 28rpx;
color: #111;
margin-top: 20rpx;
}
.title {
font-size: 32rpx;
color: #111;
font-weight: 700;
}
}
</style>