场馆停用bug修复

This commit is contained in:
2023-10-10 17:00:13 +08:00
parent 39776422e4
commit 859ec4fa21
4 changed files with 50 additions and 4 deletions

View File

@@ -154,7 +154,11 @@
<confirm-dialog title="提示" message="请先绑定微信" confirmBtnTitle="绑定" isUserInfo="{{true}}" bindcancelselect="cancelWXDialog" bindgetuserinfo="getUserInfo" wx:if="{{isWxLogin}}"></confirm-dialog>
<view class='share-btn-box'>
<view wx:if="{{ venues.status == 0 }}" class='share-btn-box'>
<button open-type='share'></button>
<image src='../../images/10@3x.png' style='width:100%; height: 100%'></image>
</view>
<view wx:else class='newplot'>
<image src='../../images/noContent.png'></image>
<text>场馆维护中,请等待场馆恢复 ~</text>
</view>

View File

@@ -410,3 +410,22 @@
.share-btn-box>button::after {
border: none;
}
.newplot {
position: fixed;
top: 260rpx;
bottom: 0;
left: 0;
right: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #FFF;
font-size: 28rpx;
}
.newplot>image {
width: 200rpx;
height: 200rpx;
margin-top: -200rpx;
}

View File

@@ -90,7 +90,11 @@
<confirm-dialog title="提示" message="请先绑定微信" confirmBtnTitle="绑定" isUserInfo="{{true}}" bindcancelselect="cancelDeleteDialog" bindgetuserinfo="getUserInfo" wx:if="{{isWxLogin}}"></confirm-dialog>
<view class='share-btn-box'>
<view wx:if="{{ venues.status == 0 }}" class='share-btn-box'>
<button open-type='share'></button>
<image src='../../images/10@3x.png' style='width:100%; height: 100%'></image>
</view>
</view>
<view wx:else class='newplot'>
<image src='../../images/noContent.png'></image>
<text>场馆维护中,请等待场馆恢复 ~</text>
</view>

View File

@@ -287,4 +287,23 @@
}
.share-btn-box>button::after {
border: none;
}
}
.newplot {
position: fixed;
top: 260rpx;
bottom: 0;
left: 0;
right: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #FFF;
font-size: 28rpx;
}
.newplot>image {
width: 200rpx;
height: 200rpx;
margin-top: -200rpx;
}