updatePassword.wxml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!--component/updatePassword/updatePassword.wxml-->
  2. <view class="updatepassword_page">
  3. <view class="updatepassword_window" style="width: {{width}}rpx;height: {{height}}rpx; scale: {{initScale}};">
  4. <view class="updatepassword_window_top">
  5. <text>找回密码</text>
  6. </view>
  7. <view class="updatepassword_input_layout">
  8. <!--输入手机号的iput-->
  9. <view class="phonenum_login_layout_input_bg" style="height: 77rpx;">
  10. <image class="phonenum_login_layout_input_icon" src="../../image/login/phone_num_icon.png"></image>
  11. <input class="phonenum_login_layout_input" maxlength="11" type="number" placeholder="输入您的手机号" value="{{inputPhoneNum}}" bindinput="bindPwdLoginPhoneInput" />
  12. </view>
  13. <!--输入手机号的iput end-->
  14. <!--输入验证码的iput-->
  15. <view class="phonenum_login_layout_input_bg" style="margin-top: 41rpx; height: 77rpx;">
  16. <image class="phonenum_login_layout_input_icon" src="../../image/login/phone_vcode_icon.png"></image>
  17. <input class="phonenum_login_layout_input" maxlength="6" type="number" placeholder="输入验证码" bindinput="bindVCodeInput" />
  18. <text class="phonenum_loing_layout_getvcode" bindtap="clickGetVCode">{{getVCodeText}}</text>
  19. </view>
  20. <!--输入验证码的iput end-->
  21. <!-- 密码的input-->
  22. <view class="phonenum_login_layout_input_bg" style="margin-top: 41rpx; height: 77rpx;">
  23. <image class="phonenum_login_layout_input_icon" src="../../image/login/account_pwd_icon.png"></image>
  24. <input class="phonenum_login_layout_input" password="{{showAccPwd}}" maxlength="11" placeholder="输入密码" bindinput="bindPassWordInput" />
  25. <view class="account_show_pwd_icon_layout" bindtap="showAccountPwd">
  26. <image class="account_show_pwd_icon" style="margin-right: 22rpx;" src="../../image/login/account_show_pwd_icon.png"></image>
  27. </view>
  28. </view>
  29. <button class="login_btn" style="width: 618.06rpx; height: 83rpx; margin-top: 58rpx;font-weight: 500;" bindtap="submitInfo">确 认</button>
  30. <text style="margin-top: 21rpx;font-size: 30rpx;" bindtap="hideSelf">取消</text>
  31. <!-- 密码的input end-->
  32. </view>
  33. </view>
  34. </view>