Browse Source

修改

branch0222
douzhuo 1 year ago
parent
commit
74091fcfd9
1 changed files with 30 additions and 13 deletions
  1. +30
    -13
      pages/mine/equipmentLog.vue

+ 30
- 13
pages/mine/equipmentLog.vue View File

@@ -45,7 +45,7 @@
<view class="cycle"></view>
</view>
<view class="recordingBox">
<text class="recordingBoxItem-title" >录音开启</text>
<text class="recordingBoxItem-title">录音开启</text>
<view class="recordingBoxItem">
<text class="left">指派人:</text>
<text class="right">{{info.owenrName}}</text>
@@ -62,6 +62,14 @@
</text>
</view>
</view>
<view class="recordingBoxItem">
<text class="left">设备电量:</text>
<view class="right" style="font-weight: bold;font-size: 28rpx;">
<text :style="{color: info.electricityStart <= 20 ?'red':'#333'}">
{{info.electricityStart || ''}}
</text>
</view>
</view>
</view>
<view class="recordingBox" style="margin-top: 40rpx;">
<text class="recordingBoxItem-title">录音关闭</text>
@@ -81,6 +89,15 @@
</text>
</view>
</view>
<view class="recordingBoxItem">
<text class="left">设备电量:</text>
<view class="right" style="font-weight: bold;font-size: 28rpx;">
<text :style="{color: info.electricityEnd <= 20 ?'red':'#333'}">
{{info.electricityEnd || ''}}
</text>
</view>
</view>
</view>
</view>
<view class="offlineRec">
@@ -276,7 +293,7 @@
flex-direction: column;
background: #FFFFFF;
border-radius: 8rpx;
.left-box {
position: absolute;
left: 30rpx;
@@ -286,7 +303,7 @@
display: flex;
flex-direction: column;
align-items: center;
.cycle {
width: 24rpx;
height: 24rpx;
@@ -294,37 +311,37 @@
border-radius: 50%;
border: 4rpx solid #2671E2;
}
.point {
flex-grow: 1;
border-left: 5rpx dotted #2671E2;
}
}
.recordingBox {
width: 100%;
display: flex;
flex-direction: column;
.recordingBoxItem-title {
font-size: 32rpx;
font-weight: 700;
}
.recordingBoxItem {
margin-top: 24rpx;
display: flex;
.left {
flex-shrink: 0;
width: 210rpx;
color: #505050;
font-size: 30rpx;
}
.right {
flex-grow: 1;
font-size: 30rpx !important;
@@ -354,4 +371,4 @@
}
}
}
</style>
</style>

Loading…
Cancel
Save