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.
|
|
|
<!--pages/set/password.wxml-->
|
|
|
|
<view class="page">
|
|
|
|
|
|
|
|
<!--密码登录-->
|
|
|
|
<view class='password'>
|
|
|
|
<!-- 旧密码 -->
|
|
|
|
<view class="userCs">
|
|
|
|
<!-- <image src="/images/user.png" class="user"></image> -->
|
|
|
|
<input placeholder="请输入原密码" type="password" value="{{address}}" bindinput="originalInput" />
|
|
|
|
</view>
|
|
|
|
<!-- 新密码 -->
|
|
|
|
<view class=passwordCs">
|
|
|
|
<!-- <image src="/images/pass.png" class="pass"></image> -->
|
|
|
|
<input placeholder="请输入新密码" type="password" value="{{newPwd}}" bindinput="passwordInput" />
|
|
|
|
</view>
|
|
|
|
<!-- 密码 -->
|
|
|
|
<view class=passwordCs">
|
|
|
|
<!-- <image src="/images/pass.png" class="pass"></image> -->
|
|
|
|
<input placeholder="请确认新密码" type="password" value="{{confirmpwd}}" bindinput="confirmInput" />
|
|
|
|
</view>
|
|
|
|
<view class="loginView" bindtap="confirmAct">确认</view>
|
|
|
|
</view>
|
|
|
|
</view>
|