<!--pages/changePsw/changePSW.wxml-->
|
<!-- <text>pages/changePsw/changePSW.wxml</text> -->
|
<van-cell-group>
|
<van-field value="{{ old }}" type="password" bind:change="change1" required clearable label="旧密码" placeholder="" />
|
<van-field value="{{ new }}" type="password" bind:change="change2" clearable label="新密码" placeholder="" required />
|
<van-field value="{{ newTwo }}" type="password" bind:change="change3" clearable label="确认密码" placeholder="" required />
|
</van-cell-group>
|
<view style="width: 94%;height: 40px;line-height: 40px;background-color: #007CFE;color: #fff;margin-left: 3%;margin-top: 20px;text-align: center;border-radius: 2px;" bind:tap="changePSW">
|
确认修改
|
</view>
|