83 lines
4.5 KiB
Plaintext
83 lines
4.5 KiB
Plaintext
<view>
|
|
<view class="i-tabs-cell">
|
|
<view class="i-cell-left">认证类型</view>
|
|
<view class="i-cell-right">
|
|
<radio-group bindchange="radioChange">
|
|
<radio value="1" color="{{backgroundColor}}" checked="{{refund === '1'}}" class="_com">企业</radio>
|
|
<radio value="2" color="{{backgroundColor}}" checked="{{refund === '2'}}">个人</radio>
|
|
</radio-group>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{refund === '1'}}" class="">
|
|
<view class="i-tabs-cel">
|
|
<view class="i-upload-pictures">
|
|
<view wx:if="{{enterprise.length === 0}}" class="image_text">上传照片</view>
|
|
<mp-uploader bindsuccess="uploadSuccess" bindfail="uploadError" binddelete="binddelete" select="{{selectFile}}" upload="{{uplaodFileEnterprise}}" delete="{{true}}" files="{{enterprise}}" max-count="1" title="营业执照"></mp-uploader>
|
|
</view>
|
|
<!-- <image src="../../utils/static/images/required.png" class="_image"></image> -->
|
|
</view>
|
|
<view class="i-tabs-cel">
|
|
<view class="i-cell-left">企业名称</view>
|
|
<!-- <image src="../../utils/static/images/required.png" class="_image"></image> -->
|
|
<view class="i-cell-right">
|
|
<input class="weui-input" value="{{corporation_name}}" bindinput="inputCorporationName" maxlength="30" placeholder="请输入"/>
|
|
</view>
|
|
</view>
|
|
<view class="i-tabs-cel">
|
|
<view class="i-cell-left">纳税人识别号</view>
|
|
<view class="i-cell-right">
|
|
<input class="weui-input" value="{{unified_tax_code}}" bindinput="inputUnifiedTaxCode" maxlength="30" placeholder="请输入"/>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="i-tabs-cel">
|
|
<view class="i-cell-left">联系人手机</view>
|
|
<view class="i-cell-right">
|
|
<input class="weui-input" value="{{contacts_mobile}}" bindinput="inputContactsMobile" maxlength="30" placeholder="请输入公司银行卡开户时的联系人姓名"/>
|
|
</view>
|
|
</view> -->
|
|
<view class="_text">* 证件信息识别如有偏差,请手动调整</view>
|
|
<view class="i-tabs-cel">
|
|
<view class="i-cell-left">联系人姓名</view>
|
|
<view class="i-cell-right">
|
|
<input class="weui-input" value="{{contacts_name}}" bindinput="inputContactsName" maxlength="30" placeholder="请输入公司银行卡开户时的联系人姓名"/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:elif="{{refund === '2'}}" class="">
|
|
<view class="i-tabs-cel">
|
|
<view class="i-upload-pictures">
|
|
<text wx:if="{{id_card.length === 0}}" class="image_text">上传照片</text>
|
|
<mp-uploader bindsuccess="uploadSuccess" bindfail="uploadError" binddelete="binddelete" select="{{selectFile}}" upload="{{uplaodFile}}" files="{{id_card}}" max-count="1" title="身份证"></mp-uploader>
|
|
<!-- <view class="_text">证件信息识别如有偏差,请手动调整</view> -->
|
|
</view>
|
|
<!-- <image src="../../utils/static/images/required.png" class="_image"></image> -->
|
|
</view>
|
|
<view class="i-tabs-cel">
|
|
<view class="i-cell-left">姓名</view>
|
|
<!-- <image src="../../utils/static/images/required.png" class="_image"></image> -->
|
|
<view class="i-cell-right">
|
|
<input class="weui-input" value="{{name}}" bindinput="inputName" maxlength="30" placeholder="请输入"/>
|
|
</view>
|
|
</view>
|
|
<view class="i-tabs-cel">
|
|
<view class="i-cell-left">身份证号</view>
|
|
<!-- <image src="../../utils/static/images/required.png" class="_image"></image> -->
|
|
<view class="i-cell-right">
|
|
<input class="weui-input" value="{{card_number}}" bindinput="inputCardNumber" type="idcard" maxlength="18" placeholder="请输入"/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="i-page-section">
|
|
<button wx:if="{{refund === '1'}}" class="{{((corporation_name !== '') && (unified_tax_code !== '') && (business_licence !== '') && (contacts_name !== '')) ? '_button' : 'button_grey'}}" type="primary" bindtap="submit">下一步,输入 1 获取开户链接</button>
|
|
<button wx:elif="{{refund === '2'}}" class="{{((name !== '') && (card_number !== '') && (id_main !== '')) ? '_button' : 'button_grey'}}" type="primary" bindtap="submit">下一步,输入 1 获取开户链接</button>
|
|
</view>
|
|
<view wx:if="{{openState}}" class="mask">
|
|
<view class="head_center">
|
|
<view class="_center"><text>在客服对话框中,输入</text><text>1</text><text>获取开户链接</text></view>
|
|
<view bindtap="openAccount">
|
|
<button class="_button" type="primary" open-type="contact">我知道了</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|