epmet 工作端 小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
878 B

2 years ago
<!--subpages/settings/pages/changePassword/changePassword.wxml-->
<view class="card">
<view class="item">
<view class="label">原密码</view>
<view class="input">
<input bindinput="changeOldPassword" type="password" placeholder="请输入"/>
</view>
</view>
<view class="item">
<view class="label">新密码</view>
<view class="input">
<input bindinput="changeNewPassword" type="password" placeholder="8-12个字符,同时包含大小写字母和数字"/>
</view>
</view>
<view class="item no-pseudo">
<view class="label">确认密码</view>
<view class="input">
<input bindinput="changeConfirmPassword" type="password" placeholder="请输入"/>
</view>
</view>
</view>
<button hover-class="btn-hover" bind:tap="handelSubmit">提交</button>