index.wxml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <navbar parameter="{{parameter}}"></navbar>
  2. <view class="ChangePassword">
  3. <view class="phone">当前手机号:{{phone}}</view>
  4. <view class="list">
  5. <view class="item">
  6. <input
  7. type="password"
  8. placeholder="设置新密码"
  9. bindinput="inputgetName"
  10. data-name="password"
  11. placeholder-class="placeholder"
  12. />
  13. </view>
  14. <view class="item">
  15. <input
  16. type="password"
  17. placeholder="确认新密码"
  18. bindinput="inputgetName"
  19. data-name="qr_password"
  20. placeholder-class="placeholder"
  21. />
  22. </view>
  23. <view class="item acea-row row-between-wrapper">
  24. <input
  25. type="number"
  26. placeholder="填写验证码"
  27. placeholder-class="placeholder"
  28. bindinput="inputgetName"
  29. data-name="captcha"
  30. class="codeIput"
  31. />
  32. <button class="code font-color {{disabled === true ? 'on' : ''}}" disabled="{{disabled}}" bindtap="code">
  33. {{ timetext }}
  34. </button>
  35. </view>
  36. <view class="item acea-row row-between-wrapper" wx:if="{{imagesCode}}">
  37. <input
  38. type="text"
  39. placeholder="填写图片验证码"
  40. placeholder-class="placeholder"
  41. class="codeIput"
  42. bindinput="inputgetName"
  43. data-name="captchaimg"
  44. />
  45. <image src="{{httpUrl}}" class="images" bindtap="imagesCodeTap"></image>
  46. </view>
  47. </view>
  48. <view class="confirmBnt bg-color" bindtap="editPwd">确认修改</view>
  49. </view>
  50. <authorize bind:onLoadFun="onLoadFun"></authorize>