updatepassword.wxml 1.7 KB

12345678910111213141516171819202122232425262728293031323334
  1. <view>
  2. <image src="/images/bg_main_new.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}}
  8. </view>
  9. <view class="home">
  10. 手机 : {{info.phone}}
  11. </view>
  12. <form bindsubmit="formSubmit">
  13. <view class="box">
  14. <view class="name" style=" margin-top: 20rpx;">
  15. <image src="/images/pwd.png" style="width: 30rpx; height: 30rpx;margin-top:10rpx;margin-left:10rpx"> </image>
  16. <input name='oldPwd' class="weui-input" password='{{passwordType1}}' placeholder="请输入原密码" />
  17. <image src='{{defaultType1? "/images/eye_close.png": "/images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus1'></image>
  18. </view>
  19. <view class="name" style=" margin-top: 20rpx;">
  20. <image src="/images/pwd.png" style="width: 30rpx; height: 30rpx;margin-top:10rpx;margin-left:10rpx"> </image>
  21. <input name='pwd' class="weui-input" password='{{passwordType2}}' placeholder="请输入新密码" />
  22. <image src='{{defaultType2? "/images/eye_close.png": "/images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus2'></image>
  23. </view>
  24. <view class="name" style=" margin-top: 20rpx;">
  25. <image src="/images/pwd.png" style="width: 30rpx; height: 30rpx;margin-top:10rpx;margin-left:10rpx"> </image>
  26. <input name='newPwd' class="weui-input" password='{{passwordType3}}' placeholder="请再次输入新密码" />
  27. <image src='{{defaultType3? "/images/eye_close.png": "/images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus3'></image>
  28. </view>
  29. <view class="register">
  30. <button formType="submit">修改密码</button>
  31. </view>
  32. </view>
  33. </form>
  34. </view>