1
0
forked from dyf/APP

6170控制设备接口,添加参数imei

This commit is contained in:
fengerli
2025-08-11 11:24:21 +08:00
parent b78ec21152
commit d8edb9f31e
3 changed files with 140 additions and 7 deletions

View File

@ -8,6 +8,16 @@
</view>
</view>
</scroll-view>
<scroll-view class="content-list" scroll-y="true">
<view class="record-item" v-for="item in recodesInfo" :key="item.index">
<view class="record-details">
<text class="detail-time">开机时间</text>
<text class="detail-line">2026.08.29 21:13:58</text>
<text class="detail-line">关机时间</text>
<text class="detail-time">2025.06.30 00:45:20</text>
</view>
</view>
</scroll-view>
</view>
</template>
@ -23,6 +33,7 @@
},
],
activeTab: 0,
recodesInfo: [{}]
}
},
methods: {
@ -68,4 +79,42 @@
border-bottom: 6rpx solid rgba(187, 230, 0, 1);
height: 60rpx;
}
.content-list {
height: calc(100vh - 300rpx);
}
.record-item {
display: flex;
margin-bottom: 20rpx;
background: rgba(26, 26, 26, 1);
border-radius: 18rpx;
padding: 20rpx;
}
.record-details {
flex: 1;
}
.detail-line {
display: block;
font-size: 28rpx;
margin-bottom: 10rpx;
color: rgba(255, 255, 255, 0.87);
font-size: 24rpx;
line-height: 40rpx;
}
.detail-time {
color: rgba(255, 255, 255, 0.6);
font-size: 24rpx;
}
.time-display {
position: absolute;
top: 30rpx;
right: 30rpx;
font-size: 28rpx;
color: #BBE600;
}
</style>