【bug】不在会议召开期间不显示 缴费凭证和后四位
This commit is contained in:
@@ -477,11 +477,11 @@
|
||||
|
||||
|
||||
<!-- 缴费凭证 begin -->
|
||||
<view class="payment-record" wx:if="{{singInPersonInfo.payMode === 2 || singInPersonInfo.payMode === 1}}">
|
||||
<view class="p-20">
|
||||
<view class="payment-record" wx:if="{{singInPersonInfo.payMode === 2 || singInPersonInfo.payMode === 1 && meetingInfo.meetingStatus +'' !== '4' }}">
|
||||
<view class="p-20" wx:if="{{meetingInfo.meetingStatus +'' !== '4'}}">
|
||||
<text class="validate">缴费凭证</text>
|
||||
<!-- 未审核的显示 -->
|
||||
<view class="payment-text" wx:if="{{singInPersonInfo.checkResult !== 1 && meetingInfo.meetingStatus !== 4 }}">
|
||||
<view class="payment-text" wx:if="{{singInPersonInfo.checkResult !== 1 && meetingInfo.meetingStatus +'' !== '4' }}">
|
||||
<image-upload bindgetIds='getImagesId' maxLength='1' initImgsList="{{singInPersonInfo.paymentRecord}}" id="img">
|
||||
</image-upload>
|
||||
</view>
|
||||
@@ -494,7 +494,7 @@
|
||||
<view class="line"></view>
|
||||
|
||||
<!-- 缴费方式为线上的显示 -->
|
||||
<view class="p-20" wx:if="{{singInPersonInfo.payMode === 2 && singInPersonInfo.checkResult !== 1 && meetingInfo.meetingStatus !== 4 }}">
|
||||
<view class="p-20" wx:if="{{singInPersonInfo.payMode === 2 && singInPersonInfo.checkResult !== 1 && meetingInfo.meetingStatus +'' !== '4' }}">
|
||||
<text class="validate">缴费订单号后四位数</text>
|
||||
<input class="input" maxlength="4" placeholder="请输入缴费订单号后四位数" value="{{ordeCode}}" bindblur="setOrdeCode" />
|
||||
</view>
|
||||
@@ -606,8 +606,9 @@
|
||||
<!-- 只有审核通过的状态不显示 -->
|
||||
<!-- 线上缴费的只有在会议期间可以上传 -->
|
||||
<!-- 打包的不显示 确定按钮 -->
|
||||
<!-- 会议状态不能是已结束 -->
|
||||
<view class="sign-up"
|
||||
wx:if="{{singInPersonInfo.checkResult !== 1 && singInPersonInfo.payMode && singInPersonInfo.payMode !== 3 }}">
|
||||
wx:if="{{singInPersonInfo.checkResult !== 1 && singInPersonInfo.payMode && singInPersonInfo.payMode !== 3 && meetingInfo.meetingStatus +'' !== '4' }}">
|
||||
<text bindtap="editPayRecord">确定 </text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -132,7 +132,7 @@ page{
|
||||
right: -3px;
|
||||
}
|
||||
.sign-up-empty{
|
||||
height: 60px;
|
||||
height: 40px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
margin-top: 10px;
|
||||
|
||||
Reference in New Issue
Block a user