51 lines
1.8 KiB
Plaintext
51 lines
1.8 KiB
Plaintext
<!--pages/forGetPassword/index.wxml-->
|
|
<t-navbar left-arrow />
|
|
<view class="page login">
|
|
<view class="login__content">
|
|
<view class="login__input">
|
|
|
|
<view>
|
|
<t-input value="{{phoneNumber}}" placeholder="请输入手机号" type="number" bindchange="onPhoneInput">
|
|
<view slot="label" class="input-label">
|
|
<t-icon name="mobile" size="40rpx" class="input-iconl"></t-icon>
|
|
</view>
|
|
|
|
</t-input>
|
|
<t-input value="{{code}}" placeholder="请输入验证码" type="number" bindchange="onCodeInput">
|
|
|
|
<view slot="label" class="input-label">
|
|
<t-icon name="mail" size="40rpx" class="input-iconl"></t-icon>
|
|
</view>
|
|
<view slot="suffix" style="display: flex; align-items: center">
|
|
<view class="suffix--line"></view>
|
|
<view class="verify" aria-role="button" bindtap="getCode"> 发送验证码 </view>
|
|
</view>
|
|
</t-input>
|
|
<t-input value="{{phoneNumber}}" placeholder="请设置6-20位密码" type="number" bindchange="onPhoneInput">
|
|
<view slot="label" class="input-label">
|
|
<t-icon name="git-repository-private" size="40rpx" class="input-iconl"></t-icon>
|
|
</view>
|
|
|
|
</t-input>
|
|
<t-input value="{{phoneNumber}}" placeholder="请重新输入密码" type="number" bindchange="onPhoneInput">
|
|
<view slot="label" class="input-label">
|
|
<t-icon name="git-repository-private" size="40rpx" class="input-iconl"></t-icon>
|
|
</view>
|
|
|
|
</t-input>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<view class="login__button">
|
|
<t-button theme="primary" size="large" block disabled="{{!isSubmit}}" bindtap="login">
|
|
确定
|
|
</t-button>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view> |