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.
25 lines
1.5 KiB
25 lines
1.5 KiB
<!--pages/home/password/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="backText">返回</view>
|
|
<view slot="content" style="color:black;font-size:18px">密码重置</view>
|
|
</cu-custom>
|
|
|
|
<view class="padding content-box">
|
|
<view class="cu-form-group" style="min-height:120rpx;padding:1rpx 16rpx">
|
|
<text class="cuIcon-mobile lg text-black" style="font-size:50rpx"></text>
|
|
<input type="number" maxlength='11' disabled="true" value="1861567356" style="margin-left:18rpx"></input>
|
|
</view>
|
|
<view class="cu-form-group" style="min-height:120rpx;padding:1rpx 16rpx">
|
|
<text class="cuIcon-safe lg text-black" style="font-size:50rpx"></text>
|
|
<input type="number" maxlength='8' placeholder="请输入验证码" style="margin-left:18rpx" bindinput="BindMobile"></input>
|
|
<wux-button clear type="positive" style="margin-right:-12rpx" bind:click="fetchCode">{{ second || '获取验证码' }}</wux-button>
|
|
</view>
|
|
<view class="cu-form-group" style="min-height:120rpx;border-bottom:1rpx solid #eee;padding:1rpx 16rpx">
|
|
<text class="cuIcon-lock lg text-black" style="font-size:50rpx"></text>
|
|
<input type="{{pwdType}}" maxlength='20' placeholder="请输入密码" style="margin-left:18rpx" bindinput="BindPwd"></input>
|
|
<text class="cuIcon-{{pwd_icon}} lg text-black" style="font-size:50rpx" bindtap="changePwd"></text>
|
|
</view>
|
|
<view class="flex flex-direction" style="margin-top:120rpx;margin-bottom:32rpx">
|
|
<wux-button block type="positive" bind:click="resetPassword">确定</wux-button>
|
|
</view>
|
|
</view>
|