updatepassword.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. <view>
  2. <image src="/images/bg_main_new2.jpg" style="width: 100%; height: 380rpx;"> </image>
  3. <view class="home">
  4. 账号:{{info.loginName}}({{info.dept5.name}})
  5. </view>
  6. <view class="home">
  7. 姓名:{{info.userName}} 手机: {{info.phone}}
  8. </view>
  9. <form bindsubmit="formSubmit">
  10. <view class="box">
  11. <view class="name" style=" margin-top: 20rpx;">
  12. <image src="/images/pwd.png" style="width: 40rpx; height: 40rpx;"> </image>
  13. <input name='oldPwd' class="weui-input" password='{{passwordType1}}' placeholder="请输入原密码" />
  14. <image src='{{defaultType1? "/images/eye_close.png": "/images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus1'></image>
  15. </view>
  16. <view class="name" style=" margin-top: 20rpx;">
  17. <image src="/images/pwd.png" style="width: 40rpx; height: 40rpx;"> </image>
  18. <input name='pwd' class="weui-input" password='{{passwordType2}}' placeholder="请输入新密码" />
  19. <image src='{{defaultType2? "/images/eye_close.png": "/images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus2'></image>
  20. </view>
  21. <view class="name" style=" margin-top: 20rpx;">
  22. <image src="/images/pwd.png" style="width: 40rpx; height: 40rpx;"> </image>
  23. <input name='newPwd' class="weui-input" password='{{passwordType3}}' placeholder="请再次输入新密码" />
  24. <image src='{{defaultType3? "/images/eye_close.png": "/images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus3'></image>
  25. </view>
  26. <view class="register">
  27. <button formType="submit">修改密码</button>
  28. </view>
  29. </view>
  30. </form>
  31. </view>