123456789101112131415161718192021222324252627282930313233343536373839 |
- <!--component/updatePassword/updatePassword.wxml-->
- <view class="updatepassword_page">
- <view class="updatepassword_window" style="width: {{width}}rpx;height: {{height}}rpx; scale: {{initScale}};">
- <view class="updatepassword_window_top">
- <text>找回密码</text>
- </view>
- <view class="updatepassword_input_layout">
- <!--输入手机号的iput-->
- <view class="phonenum_login_layout_input_bg" style="height: 77rpx;">
- <image class="phonenum_login_layout_input_icon" src="../../image/login/phone_num_icon.png"></image>
- <input class="phonenum_login_layout_input" maxlength="11" type="number" placeholder="输入您的手机号" value="{{inputPhoneNum}}" bindinput="bindPwdLoginPhoneInput" />
- </view>
- <!--输入手机号的iput end-->
- <!--输入验证码的iput-->
- <view class="phonenum_login_layout_input_bg" style="margin-top: 41rpx; height: 77rpx;">
- <image class="phonenum_login_layout_input_icon" src="../../image/login/phone_vcode_icon.png"></image>
- <input class="phonenum_login_layout_input" maxlength="6" type="number" placeholder="输入验证码" bindinput="bindVCodeInput" />
- <text class="phonenum_loing_layout_getvcode" bindtap="clickGetVCode">{{getVCodeText}}</text>
- </view>
- <!--输入验证码的iput end-->
- <!-- 密码的input-->
- <view class="phonenum_login_layout_input_bg" style="margin-top: 41rpx; height: 77rpx;">
- <image class="phonenum_login_layout_input_icon" src="../../image/login/account_pwd_icon.png"></image>
- <input class="phonenum_login_layout_input" password="{{showAccPwd}}" maxlength="11" placeholder="输入密码" bindinput="bindPassWordInput" />
- <view class="account_show_pwd_icon_layout" bindtap="showAccountPwd">
- <image class="account_show_pwd_icon" style="margin-right: 22rpx;" src="../../image/login/account_show_pwd_icon.png"></image>
- </view>
- </view>
- <button class="login_btn" style="width: 618.06rpx; height: 83rpx; margin-top: 58rpx;font-weight: 500;" bindtap="submitInfo">确 认</button>
- <text style="margin-top: 21rpx;font-size: 30rpx;" bindtap="hideSelf">取消</text>
- <!-- 密码的input end-->
- </view>
- </view>
- </view>
|