123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <template>
- <view>
- <view class="content">
- <view class="title">瓦斯异常情况</view>
- <view class="content_inner">
- <view class="list_item">
- <view class="item">
- <view class="name">报警</view>
- <view class="num">0个</view>
- <view class="icon">
- <image src="./icon/p_gas_1.png" mode=""></image>
- </view>
- </view>
- <view class="item">
- <view class="name">断电</view>
- <view class="num">0个</view>
- <view class="icon">
- <image src="./icon/p_gas_2.png" mode=""></image>
- </view>
- </view>
- <view class="item">
- <view class="name">故障</view>
- <view class="num">0个</view>
- <view class="icon">
- <image src="./icon/p_gas_3.png" mode=""></image>
- </view>
- </view>
-
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .content{
- margin-top: 15rpx;
- background: #FFFFFF;
- border-radius: 31rpx;
- .title{
- text-align: center;
- line-height: 97rpx;
- border-bottom: 2rpx solid #f3f3f3;
-
- font-size: 29rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #232627;
- }
- .content_inner{
- box-sizing: border-box;
- padding: 30rpx 58rpx;
- .list_item{
- display: flex;
- justify-content: space-between;
- .item{
- width: 84rpx;
- text-align: center;
- .name{
- font-size: 29rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #232627;
- line-height: 42rpx;
- }
- .num{
- margin-top: 28rpx;
-
- font-size: 29rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #232627;
- line-height: 42rpx;
- }
- .icon{
- margin-top: 27rpx;
- image{
- width: 84rpx;
- height: 84rpx;
- }
- }
- }
- }
- }
- }
- </style>
|