You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.9 KiB
66 lines
2.9 KiB
<!--pages/bank/edit/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">添加银行卡</view>
|
|
</cu-custom>
|
|
|
|
<view class="cu-list menu no-card sm-border margin-top">
|
|
<view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">持卡人姓名:</view>
|
|
<input id="ownerName" maxlength="8" style="width:65%" placeholder="请输入持卡人姓名" bindinput="bindForm"></input>
|
|
</view>
|
|
</view>
|
|
<view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">银行卡卡号:</view>
|
|
<input id="cardNo" maxlength="24" style="width:65%" type="number" bindblur="inputBlur" placeholder="请输入银行卡卡号" bindinput="bindForm"></input>
|
|
</view>
|
|
</view>
|
|
<view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">身份证号码:</view>
|
|
<input id="idNumber" maxlength="19" style="width:65%" type="idcard" bindblur="inputBlur" placeholder="请输入身份证号码" bindinput="bindForm"></input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="cu-list menu no-card sm-border margin-top">
|
|
<view class="cu-item">
|
|
<view class="flex cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">银行:</view>
|
|
<input disabled="{{true}}" style="width:65%" value="{{bankName}}" placeholder="输入卡号之后会自动识别"></input>
|
|
</view>
|
|
</view>
|
|
<view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">银行卡类型:</view>
|
|
<input disabled="{{true}}" style="width:65%" value="{{cardType}}" placeholder="输入卡号之后会自动识别"></input>
|
|
</view>
|
|
</view>
|
|
<view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">开户行网点:</view>
|
|
<input id="openingBank" style="width:65%" type="text" placeholder="请输入开户行网点" bindinput="bindForm"></input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="cu-list menu no-card sm-border margin-top">
|
|
<view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">手机号:</view>
|
|
<input id="cardMobile" maxlength="11" type="number" placeholder="请输入银行预留手机号码" bindinput="bindForm"></input>
|
|
</view>
|
|
</view>
|
|
<view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">验证码:</view>
|
|
<input id="verificationCode" maxlength="6" type="number" placeholder="请输入验证码" bindinput="bindForm"></input>
|
|
</view>
|
|
<wux-button outline type="positive" size="code" disabled="{{!codeEnable}}" bind:click="fetchCode">{{ second || '获取验证码' }}</wux-button>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="flex flex-direction" style="padding:80rpx 32rpx">
|
|
<wux-button block type="positive" bind:click="submitForm">提交</wux-button>
|
|
</view>
|