Commit 2452452d authored by ltz's avatar ltz

fix

parent 21a7ca3b
...@@ -84,9 +84,9 @@ ...@@ -84,9 +84,9 @@
<image class="icon-label" src="{{imageRoot}}2b/themeindex/icon_clockrate.png"></image> <image class="icon-label" src="{{imageRoot}}2b/themeindex/icon_clockrate.png"></image>
<view class="title1">打卡率</view> <view class="title1">打卡率</view>
<view class="progress-box"> <view class="progress-box">
<view class="current" style="width: {{circleInfo.class_student_count==0? 0: memberTotal2/circleInfo.class_student_count*100}}%"></view> <view class="current" style="width: {{circleInfo.class_student_count==0? 0: memberTotal2/circleInfo.class_student_count*100>100?100:memberTotal2/circleInfo.class_student_count*100}}%"></view>
</view> </view>
<view class="rate-num">{{circleInfo.class_student_count==0?0:filter.toFix(memberTotal2/circleInfo.class_student_count*100,2)}}%</view> <view class="rate-num">{{circleInfo.class_student_count==0?0:filter.toFix(memberTotal2/circleInfo.class_student_count*100,2)>100?100:filter.toFix(memberTotal2/circleInfo.class_student_count*100,2)}}%</view>
</view> </view>
</view> </view>
<view class="unlockstudent-box"> <view class="unlockstudent-box">
......
...@@ -654,4 +654,5 @@ Page({ ...@@ -654,4 +654,5 @@ Page({
suretext:'' suretext:''
}) })
}, },
true(){}
}) })
\ No newline at end of file
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
.modal .mask{ .modal .mask{
width: 100%; width: 100%;
height: 100%; height: 100%;
position: absolute; position: fixed;
left: 0; left: 0;
top: 0; top: 0;
z-index: 9; z-index: 9;
...@@ -179,7 +179,7 @@ ...@@ -179,7 +179,7 @@
.modal-copy .modal-copy-content .content-center{ .modal-copy .modal-copy-content .content-center{
padding: 0 24rpx; padding: 0 24rpx;
max-height: 800rpx; max-height: 800rpx;
overflow: hidden; overflow-y: auto;
} }
.modal-copy .modal-copy-content .content-center .content-item{ .modal-copy .modal-copy-content .content-center .content-item{
display: flex; display: flex;
......
...@@ -45,9 +45,9 @@ ...@@ -45,9 +45,9 @@
<image class="icon-label" src="{{imageRoot}}2b/themeindex/icon_clockrate.png"></image> <image class="icon-label" src="{{imageRoot}}2b/themeindex/icon_clockrate.png"></image>
<view class="title1">打卡率</view> <view class="title1">打卡率</view>
<view class="progress-box"> <view class="progress-box">
<view class="current" style="width: {{circleInfo.class_student_count==0?0: memberTotal2/circleInfo.class_student_count*100}}%"></view> <view class="current" style="width: {{circleInfo.class_student_count==0?0: memberTotal2/circleInfo.class_student_count*100>100?100:memberTotal2/circleInfo.class_student_count*100}}%"></view>
</view> </view>
<view class="rate-num">{{circleInfo.class_student_count==0?0:filter.toFix(memberTotal2/circleInfo.class_student_count*100,2)}}%</view> <view class="rate-num">{{circleInfo.class_student_count==0?0:filter.toFix(memberTotal2/circleInfo.class_student_count*100,2)>100?100:filter.toFix(memberTotal2/circleInfo.class_student_count*100,2)}}%</view>
</view> </view>
</view> </view>
<view class="unlockstudent-box" wx:if="{{memberTotal}}"> <view class="unlockstudent-box" wx:if="{{memberTotal}}">
......
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