【修改】 上传凭证bug修改

This commit is contained in:
fengachen
2021-12-20 14:26:29 +08:00
parent 551a67b510
commit 28f6f4161a
3 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -46,7 +46,7 @@
</view>
<view class="content-text">
<image mode="aspectFill" src="../../assets/images/location.png"></image>
<text>报名状态:{{ item.signUpStatus_dictText}}</text>
<text>报名状态:{{ item.signUpStatus_dictText || '无'}}</text>
</view>
</view>
<view wx:if="{{meetingList.length === 0}}" class="no-data">
@@ -87,10 +87,11 @@ Page({
return
}
const param = {
id: this.data.meetingInfo.situationId,
id: this.data.singInPersonInfo.id,
orderCode: this.data.ordeCode,
paymentRecord: this.data.imageIds
}
if (Array.isArray(this.data.imageIds)) {
param.paymentRecord = this.data.imageIds.join(',')
}
@@ -101,11 +101,11 @@
</view>
<view>
<text style="min-width:160rpx">酒店名称</text>
<text>{{meetingInfo.hotelName}}</text>
<text>{{meetingInfo.hotelName || ''}}</text>
</view>
<view>
<text style="min-width:160rpx">酒店地址</text>
<text>{{meetingInfo.hotelAddress}}</text>
<text>{{meetingInfo.hotelAddress || ''}}</text>
</view>
<view wx:for="{{meetingInfo.hotelContactsList}}" wx:key='item'>
<text>酒店联系人</text>
@@ -475,7 +475,7 @@
<view class="p-20">
<text class="validate">缴费凭证</text>
<!-- 未审核的显示 -->
<view class="payment-text" wx:if="{{singInPersonInfo.checkResult !== 1}}">
<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>
@@ -488,7 +488,7 @@
<view class="line"></view>
<!-- 缴费方式为线上的显示 -->
<view class="p-20" wx:if="{{singInPersonInfo.payMode === 2 && singInPersonInfo.checkResult !== 1 }}">
<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>
@@ -601,7 +601,7 @@
<!-- 线上缴费的只有在会议期间可以上传 -->
<!-- 打包的不显示 确定按钮 -->
<view class="sign-up"
wx:if="{{singInPersonInfo.checkResult !== 1 && meetingInfo.meetingStatus == 3 && singInPersonInfo.payMode && singInPersonInfo.payMode !== 3 }}">
wx:if="{{singInPersonInfo.checkResult !== 1 && singInPersonInfo.payMode && singInPersonInfo.payMode !== 3 }}">
<text bindtap="editPayRecord">确定 </text>
</view>
</view>