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.
20 lines
1013 B
20 lines
1013 B
<view class="sign"> |
|
<view class="bold f50">忘记密码</view> |
|
<view class="f28 mt30 flex_start"> |
|
<text>欢迎来到普惠融租业务管理系统,</text> |
|
<navigator url="/pages/Sign/Sign" hover-class="none"> |
|
<text style="color:#fa3534">返回登录</text> |
|
</navigator> |
|
</view> |
|
<view class="pt30"> |
|
<view style=" position: relative"> |
|
<input placeholder="请输入手机号" class="sign_input" type="number" bindinput="tel"></input> |
|
<view class="code" bindtap="obtain" wx:if="{{code_num <= 0}}">获取验证码</view> |
|
<view class="code" wx:else>{{code_num}}s</view> |
|
</view> |
|
<input placeholder="请输入验证码" class="sign_input" type="number" bindinput="code"></input> |
|
<input placeholder="请输入新密码" password class="sign_input" bindinput="new_psd"></input> |
|
<input placeholder="请再次输入密码" password class="sign_input" bindinput="again_psd"></input> |
|
</view> |
|
<view class="sign_dv" bindtap="confirm">确认修改</view> |
|
</view>
|
|
|