|
|
|
<!--pages/release/companyAuth/index.wxml-->
|
|
|
|
<view class="auth-page">
|
|
|
|
<view class="company-info-box">
|
|
|
|
<view class="form-item acea-row row-between row-middle">
|
|
|
|
<view class="label">姓名</view>
|
|
|
|
<view class="inp-box">
|
|
|
|
<input type="text" value="{{form.legalPersonName}}" bindinput="inpChange" data-type="name" placeholder="请填写姓名" />
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="form-item acea-row row-between row-middle">
|
|
|
|
<view class="label">手机号</view>
|
|
|
|
<view class="inp-box">
|
|
|
|
<input type="text" value="{{form.legalPhone}}" bindinput="inpChange" data-type="phone" placeholder="请填写手机号" />
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="form-item acea-row row-between row-middle">
|
|
|
|
<view class="label">身份证号</view>
|
|
|
|
<view class="inp-box">
|
|
|
|
<input type="text" value="{{form.legalPersonIdcard}}" bindinput="inpChange" data-type="idcard" placeholder="请填写身份证号" />
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="form-item noBorder">
|
|
|
|
<view class="label">身份证</view>
|
|
|
|
<view class="inp-box sfz">
|
|
|
|
<view class="acea-row row-between-wrapper">
|
|
|
|
<image src="../../../images/renzheng/sfz1.png" bindtap="upCard" data-type="b" wx:if="{{form.idcardPicBehind == ''}}"></image>
|
|
|
|
<image src="{{form.idcardPicBehind}}" bindtap="upCard" data-type="b" wx:else></image>
|
|
|
|
<image src="../../../images/renzheng/sfzb.png"></image>
|
|
|
|
</view>
|
|
|
|
<view class="acea-row row-between-wrapper">
|
|
|
|
<image src="../../../images/renzheng/sfz2.png" bindtap="upCard" data-type="f" wx:if="{{form.idcardPicFront == ''}}"></image>
|
|
|
|
<image src="{{form.idcardPicFront}}" bindtap="upCard" data-type="f" wx:else></image>
|
|
|
|
<image src="../../../images/renzheng/sfzz.png"></image>
|
|
|
|
</view>
|
|
|
|
<view class="acea-row row-between-wrapper">
|
|
|
|
<image src="../../../images/renzheng/sfz3.png" bindtap="upCard" data-type="h" wx:if="{{form.idcardPicHold == ''}}"></image>
|
|
|
|
<image src="{{form.idcardPicHold}}" bindtap="upCard" data-type="h" wx:else></image>
|
|
|
|
<image src="../../../images/renzheng/sfzs.png"></image>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="submit-btn" bindtap="submit">保存并提交</view>
|
|
|
|
</view>
|