【bug】国际研讨会验证码输入 有误 报名人信息显示null

This commit is contained in:
fengachen
2021-12-23 20:25:12 +08:00
parent ced4a15b65
commit 299671922c
3 changed files with 11 additions and 9 deletions
@@ -309,7 +309,7 @@ Page({
})
} else {
wx.navigateTo({
url: `../signUpPageGuoji/signUpPageGuoji`
url: `../signUpPageGuoji/signUpPageGuoji?meetingId=${meetingItem.id}`
})
}
}
@@ -343,8 +343,8 @@ Page({
})
}
// 如果会议的报名状态是待签到则显示去签到按钮 待签到的报名状态时 6
if(this.data.meetingInfo.signUpStatus == 6){
// 如果会议的报名状态是待签到则显示去签到按钮 待签到的报名状态时 6 并且会议的不是已结束
if(this.data.meetingInfo.signUpStatus == 6 && this.data.meetingInfo.signUpStatus +'' !== '4' ){
this.setData({
showSignInBtn:true
})
@@ -202,12 +202,12 @@
<!-- vip显示 begin -->
<view wx:if="{{singInPersonInfo.guestType == 1}}" class="sign-in">
<text>演讲题目</text>
<text class="sign-in-text">{{singInPersonInfo.speechTopic}}</text>
<text class="sign-in-text">{{singInPersonInfo.speechTopic || ''}}</text>
</view>
<view class="meeting-files">
<text>演讲PPT</text>
<view class="file-name" wx:for="{{meetingFilesList}}" wx:key="item">
<view class="file-name" wx:for="{{speechPptList}}" wx:key="item">
<view>
<image src="../../assets/images/pdf.png"></image>
<text>{{item.name}}</text>
@@ -223,7 +223,7 @@
<view wx:if="{{singInPersonInfo.guestType == 1}}" class="sign-in-text">
<text>个人简介</text>
<text class="sign-in-text">{{singInPersonInfo.profile}}</text>
<text class="sign-in-text">{{singInPersonInfo.profile || ''}}</text>
</view>
<view wx:if="{{singInPersonInfo.guestType == 1}}">
@@ -314,9 +314,9 @@
<text class="sign-in-text">{{singInPersonInfo.speechTopic}}</text>
</view>
<view class="meeting-files">
<view class="meeting-files" wx:if="{{singInPersonInfo.guestType == 2}}">
<text>演讲PPT</text>
<view class="file-name" wx:for="{{meetingFilesList}}" wx:key="item">
<view class="file-name" wx:for="{{speechPptList}}" wx:key="item">
<view>
<image src="../../assets/images/pdf.png"></image>
<text>{{item.name}}</text>
@@ -613,6 +613,6 @@
</view>
<view class="join-meeting" style="margin-bottom:20px" wx:if="{{showSignInBtn}}">
<!-- 不需要花钱的会议、打包的会议 报名完显示 花钱的会议 现场缴费需要审核凭证通过显示 汇款的报完名显示 -->
<!-- 不需要花钱的会议、打包的会议 报名完显示 花钱的会议 现场缴费需要审核凭证通过显示 汇款的报完名显示 并被会议不能是已结束 -->
<text bindtap="toSignUp">去签到</text>
</view>
+2
View File
@@ -312,6 +312,7 @@ Page({
let validateArr = this.data.inviteCodeArr.filter(item => {
return this.data.inviteCode === item.code
})
if (validateArr.length === 0) {
wx.showToast({
title: '邀请码输入有误',
@@ -517,6 +518,7 @@ Page({
id: id
}).then(res => {
if (res.success) {
this.setData({
meetingDetailInfo: res.result,
inviteCodeArr: that.validateCodeArr(res.result),