38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
<view class="container">
|
|
<van-cell-group inset>
|
|
<van-field
|
|
value="{{ form.password }}"
|
|
type="password"
|
|
label="旧密码"
|
|
placeholder="请输入旧密码"
|
|
required
|
|
bind:input="bindInput"
|
|
data-key="password"
|
|
/>
|
|
<van-field
|
|
value="{{ form.newPassword }}"
|
|
type="password"
|
|
label="新密码"
|
|
placeholder="请输入新密码"
|
|
required
|
|
bind:input="bindInput"
|
|
data-key="newPassword"
|
|
/>
|
|
<van-field
|
|
value="{{ form.againNewPassword }}"
|
|
type="password"
|
|
label="重复密码"
|
|
placeholder="请再次输入新密码"
|
|
required
|
|
bind:input="bindInput"
|
|
data-key="againNewPassword"
|
|
/>
|
|
</van-cell-group>
|
|
<view class="button">
|
|
<van-button color="linear-gradient(to right, #00ccff, #3676f2)" round size="small"
|
|
custom-style="margin-top:50rpx; width:100%; height:70rpx" bind:click="submitPassword">
|
|
确定
|
|
</van-button>
|
|
</view>
|
|
</view>
|