You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
2.8 KiB
Plaintext

2 years ago
<include src="../../../include.wxml" />
<view class="f18 p15 bgf" style='padding-bottom:0;'>拍摄证件</view>
<view class="img2 sfz">
<view class="img2-l">
<view id="healthImgFront" class="imgArea" data-type="4" bindtap='chooseImage'>
<!-- <text wx:if="{{user.healthImgFrontm == null && user.healthImgFront == null}}" class="cccc f15"> -->
<i class="iconfont icon-tianjia cccc f25" wx:if="{{user.healthImgFrontm == null && user.healthImgFront == null}}"></i>
<!-- </text> -->
<image wx:if="{{user.healthImgFrontm != null}}" src="{{user.healthImgFrontm}}" data-url='{{user.healthImgFrontm}}' alt="" bindtap='showCard' class="imgInfo" mode="aspectFit" />
<image wx:elif="{{user.healthImgFront != null}}" src="{{user.healthImgFront}}" data-url='{{user.healthImgFront}}' alt="" bindtap='showCard' class="imgInfo" mode="aspectFit" />
</view>
<view class="f14 c8 center">健康证正面</view>
</view>
<view class="img2-r">
<view id="healthImgBack" class="imgArea imgArea-no-border" data-type="5" bindtap='chooseImage'>
<!-- <text wx:if="{{user.healthImgBackm == null && user.healthImgBack == null}}" class="cccc f15"> -->
<i class="iconfont icon-tianjia cccc f25" wx:if="{{user.healthImgBackm == null && user.healthImgBack == null}}"></i>
<!-- </text> -->
<image wx:if="{{user.healthImgBackm != null}}" src="{{user.healthImgBackm}}" data-url='{{user.healthImgBackm}}' alt="" bindtap='showCard' class="imgInfo" mode="aspectFit" />
<image wx:elif="{{user.healthImgBack != null}}" src="{{user.healthImgBack}}" data-url='{{user.healthImgBack}}' alt="" bindtap='showCard' class="imgInfo" mode="aspectFit" />
</view>
<view class="f14 c8 center">健康证反面</view>
</view>
</view>
<view class='basic-text' style='margin-top:20px;'>请核对卡片信息,确认无误。</view>
<view class="wx-text-list mt10 mb10 wx-border-tb">
<view class='wx-list-li'>
<view class='f18'>
到期时间
</view>
<view class="section flex-right">
<picker mode="date" value="{{healthTime}}" start="2015-09-01" end="2097-09-01" bindchange="bindHealthTimeChange" >
<view class="picker f18 c6">
<block wx:if="{{user.healthTime == null || user.healthTime == ''}}">
<text class='cccc'>请选择</text>
</block>
<block wx:else>{{user.healthTime}}</block>
</view>
</picker>
</view>
<i class="iconfont icon-xiayiye"></i>
</view>
</view>
<view class='center mt10 f12 cb5'>打勾网依法保护你的信息安全</view>
<view class="ui-btn-wrap piece">
<view class="ui-row-flex">
<view class="ui-col">
<button class="ui-btn-lg ui-btn-primary" hover-class='btn-primary-hover' bindtap='saveHealthCard'>
确定
</button>
</view>
</view>
</view>