39 lines
887 B
Vue
39 lines
887 B
Vue
<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> |