会议详情bug修改
This commit is contained in:
@@ -77,7 +77,8 @@ Page({
|
||||
}).then(res => {
|
||||
if (res.success) {
|
||||
this.setData({
|
||||
singInPersonInfo: res.result
|
||||
singInPersonInfo: res.result,
|
||||
ordeCode:res.result.orderCode
|
||||
})
|
||||
// 已经审核的获取审核凭证的src
|
||||
if(res.result.checkResult !== 0){
|
||||
@@ -89,7 +90,7 @@ Page({
|
||||
// 已经签到的获取签到的图片的src
|
||||
if(res.result.checkIn === 1){
|
||||
this.setData({
|
||||
signImgSrc:baseUrl + URL_CONFIG + 'sys/common/download/' + res.result.check_file
|
||||
signImgSrc:baseUrl + URL_CONFIG + 'sys/common/download/' + res.result.checkFile
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -134,9 +134,14 @@
|
||||
<view class="line"></view>
|
||||
|
||||
<!-- 缴费方式为线上的显示 -->
|
||||
<view class="p-20" wx:if="{{singInPersonInfo.payMode === 2 }}">
|
||||
<view class="p-20" wx:if="{{singInPersonInfo.payMode === 2 && singInPersonInfo.checkResult !== 1 }}">
|
||||
<text class="validate">缴费订单号后四位数</text>
|
||||
<input class="input" placeholder="请输入订单号后四位数" bindblur="setOrdeCode" />
|
||||
<input class="input" placeholder="请输入订单号后四位数" value="{{ordeCode}}" bindblur="setOrdeCode" />
|
||||
</view>
|
||||
<!-- 审核通过后的订单后四位 -->
|
||||
<view class="p-20" wx:if="{{ singInPersonInfo.checkResult === 1 }}">
|
||||
<text class="validate">缴费订单号后四位数:{{singInPersonInfo.orderCode}}</text>
|
||||
|
||||
</view>
|
||||
<view class="tip" wx:if="{{singInPersonInfo.payMOde === 2 }}">请在会议期间内上传缴费凭证和缴费订单号后四位</view>
|
||||
</view>
|
||||
@@ -161,9 +166,9 @@
|
||||
<text>签到时间</text>
|
||||
<text>{{singInPersonInfo.checkInTime}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<view style='width:100%;height:120px'>
|
||||
<text>签到信息</text>
|
||||
<imgae class="back-img" src="{{signImgSrc}}"></imgae>
|
||||
<imgae style='margin-right:30px' class="back-img" src="{{signImgSrc}}"></imgae>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 签到信息end -->
|
||||
@@ -179,7 +184,8 @@
|
||||
|
||||
<view class="sign-up-empty"></view>
|
||||
<!-- 签到 -->
|
||||
<view class="sign-up" wx:if="{{}}">
|
||||
<!-- 只有审核通过的状态不显示 -->
|
||||
<view class="sign-up" wx:if="{{singInPersonInfo.checkResult !== 1 }}">
|
||||
<text bindtap="editPayRecord">确定</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user