纸通宝小程序
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.
 

33 lines
1.4 KiB

<!--pages/bank/password/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="payPassword" maxlength="6" type="password" placeholder="请输入6位数字支付密码" 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="mobile" 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="captcha" 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>