safe.wxml 1.6 KB

12345678910111213141516171819202122232425262728
  1. <view class="bg">
  2. <view class="safe-top"></view>
  3. <view class="safe-main">
  4. <view class="phone-block">
  5. <input type="number" maxlength="20" class="phone" disabled placeholder-class="text-placeholder" value="{{tel}}"/>
  6. <image class="phone-logo" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/bindphone.png"></image>
  7. </view>
  8. <view class="yzm-block">
  9. <view class="yzm-textBlock">
  10. <input type="number" maxlength="11" class="yzm" placeholder="请输入短信验证码" placeholder-class="text-placeholder" bindinput="bindYzm" />
  11. <image class="yzm-logo" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/bindpsd.png"></image>
  12. </view>
  13. <view wx:if="{{ countdown <= 0 }}" class="getyzm" bindtap="getYzm">获取验证码</view>
  14. <view class="nogetyzm" wx:if="{{ countdown > 0 }}" >重新发送({{countdown}})</view>
  15. <view class="clean"></view>
  16. </view>
  17. <view class="pwd-block">
  18. <input password maxlength="20" class="pwd" placeholder="请输入新的交易密码" placeholder-class="text-placeholder" bindinput="bindPwd" />
  19. <image class="pwd-logo" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/safe.png"></image>
  20. </view>
  21. <view class="pwd-block">
  22. <input password maxlength="20" class="pwd" placeholder="请确认交易密码" placeholder-class="text-placeholder" bindinput="bindRepwd" />
  23. <image class="pwd-logo" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/safe.png"></image>
  24. </view>
  25. </view>
  26. <view class="safe-btn" bindtap="setUpdate">修改密码</view>
  27. </view>