88 lines
3.1 KiB
Plaintext
88 lines
3.1 KiB
Plaintext
<!--pages/voucherManagementAddto/index.wxml-->
|
|
<view class="header_title">
|
|
<view class="header_title_row">
|
|
<van-row>
|
|
|
|
<van-col span="15">
|
|
<view class="header_img" bindtap="goGCLB">
|
|
<image src="/images/left.png"></image>
|
|
<span class="header_name">劳务人员信息绑定</span>
|
|
</view>
|
|
</van-col>
|
|
</van-row>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="max_content">
|
|
<view class="add_max">
|
|
<view class="add_title">
|
|
<p style="color: red;">*</p>验证方式
|
|
</view>
|
|
<voucher-select columns="{{authenticationList}}" placeholder="请选择" bindchange="onSelectAuthentication" ></voucher-select>
|
|
</view>
|
|
|
|
<view class="add_max" wx:if="{{authentication == '1'}}">
|
|
<view class="add_title">
|
|
<p style="color: red;">*</p>手机号
|
|
</view>
|
|
<input bindblur="inputPhoneNumber" class="celect_frame_min voucher_select_max" value="{{phoneNumber}}" placeholder="请输入手机号码" placeholder-style="color:#6777aa;" />
|
|
</view>
|
|
|
|
|
|
<view class="add_max" wx:if="{{authentication == '2'}}">
|
|
<view class="add_title"> <p style="color: red;">*</p>身份证</view>
|
|
<input bindblur="inputCardId" class="celect_frame_min voucher_select_max" placeholder="请输入身份证" placeholder-style="color:#6777aa;" value="{{cardId}}" />
|
|
</view>
|
|
|
|
|
|
<view class="add_max">
|
|
<view class="add_title">归属劳务队伍</view>
|
|
<input class="celect_frame_min voucher_select_max" placeholder="请输入归属劳务队伍" placeholder-style="color:#6777aa;" value="{{companyName}}" disabled />
|
|
</view>
|
|
|
|
<view class="add_max">
|
|
<view class="add_title">姓名</view>
|
|
<input class="celect_frame_min voucher_select_max" placeholder="请输入姓名" placeholder-style="color:#6777aa;" value="{{userName}}" disabled />
|
|
</view>
|
|
|
|
<view class="add_max">
|
|
<view class="add_title">文化程度</view>
|
|
<voucher-select columns="{{educationLevelList}}" placeholder="请选择" bindchange="onSelectEducationLevel" value="{{cultureLevel}}"></voucher-select>
|
|
</view>
|
|
|
|
|
|
<view class="add_max">
|
|
<view class="add_title">紧急联系人</view>
|
|
<input class="celect_frame_min voucher_select_max" placeholder-style="color:#6777aa;" bindchange="onEmergencyName" value="{{emergencyName}}" placeholder="请填写紧急联系人" />
|
|
</view>
|
|
|
|
<view class="add_max">
|
|
<view class="add_title">紧急联系人电话</view>
|
|
<input class="celect_frame_min voucher_select_max" value="{{emergencyPhone}}" bindchange="onEmergencyPhone" placeholder-style="color:#6777aa;" placeholder="请填写紧急联系人电话" />
|
|
</view>
|
|
|
|
|
|
<view class="add_max">
|
|
<view class="add_title">
|
|
<p style="color: red;">*</p>电子签名
|
|
</view>
|
|
<mkl-sign bind:returnData="sign" bind:addto="changePage" canvas-id="canvas" image-url="{{manageSign}}"></mkl-sign>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="add_btn">
|
|
<view class="add_btn_qx" bindtap="resest">重置</view>
|
|
<view class="add_btn_bc" bindtap="bindInfo">绑定</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<van-overlay show="{{loadShow}}">
|
|
<view class="gif">
|
|
<image src="../../images/loding2.gif"></image>
|
|
<view>数据加载中!请稍后...</view>
|
|
</view>
|
|
</van-overlay> |