【bug】会议详情不填的不显示
This commit is contained in:
@@ -81,36 +81,36 @@
|
||||
<text>参会人</text>
|
||||
<text>{{singInPersonInfo.companyContactName}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<view wx:if="{{!!singInPersonInfo.checkInHotel_dictText}}">
|
||||
<text>是否住酒店</text>
|
||||
<text>{{singInPersonInfo.checkInHotel_dictText}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<view wx:if="{{!!singInPersonInfo.arrivalTime}}">
|
||||
<text>抵达时间</text>
|
||||
<text>{{singInPersonInfo.arrivalTime === null ? '' : singInPersonInfo.arrivalTime}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<view wx:if="{{!!singInPersonInfo.departureTime}}">
|
||||
<text>离开时间</text>
|
||||
<text>{{singInPersonInfo.departureTime === null ? '' : singInPersonInfo.departureTime}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<view wx:if="{{!!singInPersonInfo.postContactName}}">
|
||||
<text>邮寄联系人</text>
|
||||
<text>{{singInPersonInfo.postContactName === null ? '' :singInPersonInfo.postContactName}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<view wx:if="{{!!singInPersonInfo.payMode_dictText}}">
|
||||
<text>缴费方式</text>
|
||||
<text>{{singInPersonInfo.payMode_dictText === null ? '':singInPersonInfo.payMode_dictText }}</text>
|
||||
</view>
|
||||
<view>
|
||||
<view wx:if="{{!!singInPersonInfo.needInvoice_dictText}}">
|
||||
<text>是否需要发票</text>
|
||||
<text>{{singInPersonInfo.needInvoice_dictText === null ? '': singInPersonInfo.needInvoice_dictText}}</text>
|
||||
</view>
|
||||
<view class="sign-in">
|
||||
<view class="sign-in" wx:if="{{!!singInPersonInfo.postContactAddress}}">
|
||||
<text>邮寄地址</text>
|
||||
<text class="sign-in-text">{{singInPersonInfo.postContactAddress === null ? '' :
|
||||
singInPersonInfo.postContactAddress}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<view wx:if="{{!!singInPersonInfo.postCode}}">
|
||||
<text>邮编</text>
|
||||
<text>{{singInPersonInfo.postCode === null ? '' :singInPersonInfo.postCode}}</text>
|
||||
</view>
|
||||
@@ -146,7 +146,7 @@
|
||||
</view>
|
||||
<!-- 参会人的付款凭证审核状态 0 未审核 1已通过 2拒绝 -->
|
||||
<!-- 未审核不显示 -->
|
||||
<view class="p-20 base" wx:if="{{singInPersonInfo.paymentRecord}}">
|
||||
<view class="p-20 base" wx:if="{{singInPersonInfo.paymentRecord && (singInPersonInfo.payMode === 1 || singInPersonInfo.payMode === 2)}}">
|
||||
<text>缴费凭证状态:</text>
|
||||
<text wx:if="{{singInPersonInfo.checkResult === 0 && singInPersonInfo.paymentRecord}}">{{singInPersonInfo.checkResult_dictText}}</text>
|
||||
<text wx:if="{{singInPersonInfo.checkResult === 1}}">{{singInPersonInfo.checkResult_dictText}}</text>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<!-- 如果是小程序消息进入的报名页面 需要回显企业与参会人 参会企业不可更改 -->
|
||||
<view class="form-item">
|
||||
<text class="item-label flex-1 validate">参会单位:</text>
|
||||
<input placeholder-class="text-right" bindtap="selectCompany" disabled="{{true}}" name="selectedCompany.companyName" data-nolimit="{{nolimitBool}}" value="{{selectedCompany.companyName}}" placeholder="请选择参会单位" />
|
||||
<input placeholder-class="text-right" bindfocus="selectCompany" disabled="{{true}}" name="selectedCompany.companyName" data-nolimit="{{nolimitBool}}" value="{{selectedCompany.companyName}}" placeholder="请选择参会单位" />
|
||||
</view>
|
||||
|
||||
<view class="form-item">
|
||||
|
||||
Reference in New Issue
Block a user