12345678910111213141516171819202122232425262728293031323334 |
- <view>
- <image src="/images/bg_main_new.jpg" style="width: 100%; height: 380rpx;"> </image>
- <view class="home">
- 账号 : {{info.loginName}}({{info.dept5.name}})
- </view>
- <view class="home">
- 姓名 : {{info.userName}}
- </view>
- <view class="home">
- 手机 : {{info.phone}}
- </view>
- <form bindsubmit="formSubmit">
- <view class="box">
- <view class="name" style=" margin-top: 20rpx;">
- <image src="/images/pwd.png" style="width: 30rpx; height: 30rpx;margin-top:10rpx;margin-left:10rpx"> </image>
- <input name='oldPwd' class="weui-input" password='{{passwordType1}}' placeholder="请输入原密码" />
- <image src='{{defaultType1? "/images/eye_close.png": "/images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus1'></image>
- </view>
- <view class="name" style=" margin-top: 20rpx;">
- <image src="/images/pwd.png" style="width: 30rpx; height: 30rpx;margin-top:10rpx;margin-left:10rpx"> </image>
- <input name='pwd' class="weui-input" password='{{passwordType2}}' placeholder="请输入新密码" />
- <image src='{{defaultType2? "/images/eye_close.png": "/images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus2'></image>
- </view>
- <view class="name" style=" margin-top: 20rpx;">
- <image src="/images/pwd.png" style="width: 30rpx; height: 30rpx;margin-top:10rpx;margin-left:10rpx"> </image>
- <input name='newPwd' class="weui-input" password='{{passwordType3}}' placeholder="请再次输入新密码" />
- <image src='{{defaultType3? "/images/eye_close.png": "/images/eye_open.png"}}' class='eye-image' bindtap='eyeStatus3'></image>
- </view>
- <view class="register">
- <button formType="submit">修改密码</button>
- </view>
- </view>
- </form>
- </view>
|