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.
18 lines
793 B
18 lines
793 B
<!--pages/user/bindCard/index.wxml--> |
|
<view class="bindcard-page"> |
|
<view class="form"> |
|
<view class="form-item"> |
|
<view class="label">持卡人</view> |
|
<input type="text" bindinput="inpChange" data-type="name" value="{{form.name}}" placeholder="请输入持卡人姓名" /> |
|
</view> |
|
<view class="form-item"> |
|
<view class="label">银行卡号</view> |
|
<input type="text" bindinput="inpChange" data-type="card" value="{{form.card}}" placeholder="请输入银行卡号" /> |
|
</view> |
|
<view class="form-item"> |
|
<view class="label">开户行</view> |
|
<input type="text" bindinput="inpChange" data-type="bank" value="{{form.bank}}" placeholder="请输入开户行" /> |
|
</view> |
|
</view> |
|
<view class="submit" bindtap="submit">确定</view> |
|
</view>
|
|
|