Commit 5e5b7bc2 by 陈玉桐

未绑定设备不刷新图片

parent 72295a2e
...@@ -48,7 +48,8 @@ ...@@ -48,7 +48,8 @@
<!-- 监控 --> <!-- 监控 -->
<view class="checkCon"> <view class="checkCon">
<view class="checkDes"> <view class="checkDes">
<text id="trainTime" wx:if="{{trainingStatus==2 || trainingStatus==5}}">{{watchImgText}}</text> <text id="trainTime" wx:if="{{bindDeviceStatus==0}}">设备未绑定</text>
<text id="trainTime" wx:elif="{{trainingStatus==2 || trainingStatus==5}}">{{watchImgText}}</text>
<text id="trainTime" wx:elif="{{trainingStatus==3}}">设备未在线</text> <text id="trainTime" wx:elif="{{trainingStatus==3}}">设备未在线</text>
<text id="trainTime" wx:elif="{{trainingStatus==4}}">监控画面加载失败,请您手动刷新</text> <text id="trainTime" wx:elif="{{trainingStatus==4}}">监控画面加载失败,请您手动刷新</text>
<text id="trainTime" wx:else>设备使用中,今日已训练{{trainingTime}}分钟</text> <text id="trainTime" wx:else>设备使用中,今日已训练{{trainingTime}}分钟</text>
...@@ -244,7 +245,7 @@ ...@@ -244,7 +245,7 @@
</view> </view>
</view> </view>
<view id="indexBottom"></view> <view id="indexBottom"></view>
<view id="indexBottomText" hidden="{{!isLoading}}">底下没有了~</view> <!-- <view id="indexBottomText" hidden="{{!isLoading}}">底下没有了~</view> -->
<!-- 更新训练计划弹窗 --> <!-- 更新训练计划弹窗 -->
<view id="mustUpdate" catchtouchmove="preventTouchMove" hidden="{{mustUpdate}}"> <view id="mustUpdate" catchtouchmove="preventTouchMove" hidden="{{mustUpdate}}">
......
...@@ -8,6 +8,9 @@ ...@@ -8,6 +8,9 @@
height: 230rpx; height: 230rpx;
background-color: #e6ece5; background-color: #e6ece5;
} }
page{
background: #e6ece5;
}
/* .swiperCon{ /* .swiperCon{
border-radius:20rpx; border-radius:20rpx;
} */ } */
...@@ -106,6 +109,7 @@ ...@@ -106,6 +109,7 @@
} }
#userBox{ #userBox{
background-color: #fff;
display: flex; display: flex;
position: relative; position: relative;
padding: 10rpx 0 10rpx 50rpx; padding: 10rpx 0 10rpx 50rpx;
...@@ -154,6 +158,7 @@ ...@@ -154,6 +158,7 @@
/* 训练计划按钮 */ /* 训练计划按钮 */
#userBtnBox{ #userBtnBox{
background-color: #fff;
padding: 30rpx 20rpx; padding: 30rpx 20rpx;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
...@@ -168,6 +173,7 @@ ...@@ -168,6 +173,7 @@
/* 监控 */ /* 监控 */
.checkCon{ .checkCon{
background-color: #fff;
padding: 30rpx 20rpx; padding: 30rpx 20rpx;
} }
.checkDes{ .checkDes{
...@@ -275,6 +281,7 @@ ...@@ -275,6 +281,7 @@
/* 训练报告 */ /* 训练报告 */
.report{ .report{
background-color: #fff;
padding: 0 25rpx; padding: 0 25rpx;
} }
.reportTitle{ .reportTitle{
...@@ -392,6 +399,7 @@ ...@@ -392,6 +399,7 @@
#trainSort,#resultSort{ #trainSort,#resultSort{
color: #666; color: #666;
font-size: 32rpx; font-size: 32rpx;
background-color: #fff;
} }
.trainSortTitle,.resultSortTitle{ .trainSortTitle,.resultSortTitle{
display: flex; display: flex;
...@@ -464,6 +472,7 @@ ...@@ -464,6 +472,7 @@
#achieve{ #achieve{
color: #555; color: #555;
padding: 0 20rpx; padding: 0 20rpx;
background-color: #fff;
} }
.achieveTitle{ .achieveTitle{
display: flex; display: flex;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment