123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <template>
- <view>
- <view class="section">
- <view class="box">
- <view class="title">
- <view class="icon"></view>
- <view class="name">采煤机</view>
- <view class="right"></view>
- </view>
- <view class="content">
- <view class="img">
- <image src="./icon/img.png" mode=""></image>
- </view>
- <view class="inner">
- <view class="item">
- <view class="item_name">煤机位置</view>
- <view class="item_box">3305 V</view>
- </view>
- <view class="item">
- <view class="item_name">煤机位置</view>
- <view class="item_box">0.90 m/min</view>
- </view>
- <view class="item">
- <view class="item_name">煤机位置</view>
- <view class="item_box">144</view>
- </view>
- <view class="item">
- <view class="item_name">煤机位置</view>
- <view class="item_box">4.50</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- methods:{
-
- }
- }
- </script>
- <style lang="scss">
- .section{
- margin-top: 10rpx;
-
- .box{
- background: #FFFFFF;
- box-shadow: 0px 3rpx 30rpx 0px rgba(59, 74, 116, 0.14);
- border-radius: 21rpx;
-
- .title{
- position: relative;
- width: 720rpx;
-
- display: flex;
- justify-content: center;
- align-items: center;
- border-bottom: 2rpx solid #f3f3f3;
- .icon{
- width: 42rpx;
- height: 42rpx;
-
- background-image: url(icon/icon.png);
- background-size: cover;
- background-repeat: no-repeat;
- }
- .name{
- margin-left: 10rpx;
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #232627;
- line-height: 100rpx;
- }
- .right{
- position: absolute;
- right: 20rpx;
-
- width: 42rpx;
- height: 42rpx;
-
- background-image: url(icon/right.png);
- background-size: cover;
- background-repeat: no-repeat;
- }
- }
- .content{
- .img{
- margin: 35rpx 0;
- text-align: center;
- image{
- width: 665rpx;
- height: 215rpx;
- }
- }
- .inner{
- padding: 0 10rpx;
- display: flex;
- flex-wrap: wrap;
- .item{
- display: flex;
-
- width: 350rpx;
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- .item_name{
- width: 175rpx;
- }
- .item_box{
- margin-top: 20rpx;
- width: 175rpx;
- height: 40rpx;
- line-height: 40rpx;
- background: #8ADAFF;
-
- font-size: 27rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #232627;
- }
- }
- }
- }
- }
- }
- </style>
|