33 lines
732 B
XML
33 lines
732 B
XML
<view class="container">
|
|
<view class="title">
|
|
验证密码
|
|
</view>
|
|
<view>
|
|
<l-input
|
|
focus
|
|
hide-label
|
|
value="{{input}}"
|
|
type="password"
|
|
bind:lininput="setDataMp"
|
|
placeholder="请输入原密码"
|
|
bind:linconfirm="confirm"
|
|
l-input-class="input"
|
|
/>
|
|
</view>
|
|
<view class="tips">
|
|
<l-button
|
|
plain="{{true}}"
|
|
bind:lintap="showTips"
|
|
>
|
|
提示
|
|
</l-button>
|
|
</view>
|
|
<view style="flex:1" />
|
|
<l-button
|
|
size="long"
|
|
disabled="{{input.length < 8}}"
|
|
bind:lintap="confirm"
|
|
>
|
|
确认
|
|
</l-button>
|
|
</view> |