1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <view>
- <view class="content">
- <view class="title">安全报警</view>
- <view class="content_inner">
- <view class="list_item">
- <view class="item">
- <view class="item_name">一级报警</view>
- <view class="item_icon">1个</view>
- </view>
- <view class="item">
- <view class="item_name">二级报警</view>
- <view class="item_icon icon2">3个</view>
- </view>
- <view class="item">
- <view class="item_name">三级报警</view>
- <view class="item_icon icon3">0个</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: 38rpx 44rpx;
- .list_item{
- display: flex;
- justify-content: space-between;
-
- .item{
- width: 139rpx;
- text-align: center;
- .item_name{
- height: 42rpx;
- font-size: 29rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #232627;
- line-height: 42rpx;
- }
- .item_icon{
- margin: 0 auto;
- margin-top: 19rpx;
- width: 125rpx;
- height: 125rpx;
- background: #E74C3C;
- border-radius: 50%;
- line-height: 125rpx;
- color: #fff;
-
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- }
- .icon2{
- background: #E67E22;
- }
- .icon3{
- background: #3498DB;
- }
- }
- }
- }
- }
- </style>
|