2025-05-28 16:47:08 +00:00
|
|
|
<view class="flex-col page">
|
|
|
|
<view class="flex-col section">
|
2025-05-29 13:31:35 +00:00
|
|
|
<view class="self-start font text">{{ phone }}</view>
|
2025-05-28 16:47:08 +00:00
|
|
|
<view class="flex-row justify-between self-stretch group">
|
2025-05-29 13:31:35 +00:00
|
|
|
<input
|
|
|
|
class="font text_2"
|
|
|
|
placeholder="验证码"
|
|
|
|
bindinput="onInput"
|
|
|
|
data-field="verificationCode"
|
|
|
|
value="{{ verificationCode }}"
|
|
|
|
/>
|
|
|
|
<view bind:tap="{{ sending ? '' : 'getVerificationCode' }}">
|
|
|
|
<text class="font text_3">{{ sending ? count + 's后重发' : '发送验证码' }}</text>
|
|
|
|
</view>
|
2025-05-28 16:47:08 +00:00
|
|
|
</view>
|
2025-05-29 13:31:35 +00:00
|
|
|
<input
|
|
|
|
class="text_1 font"
|
|
|
|
placeholder="密码"
|
|
|
|
bindinput="onInput"
|
|
|
|
data-field="password"
|
|
|
|
value="{{ password }}"
|
|
|
|
/>
|
2025-05-28 16:47:08 +00:00
|
|
|
<view class="self-stretch divider"></view>
|
2025-05-29 13:31:35 +00:00
|
|
|
<input
|
|
|
|
class="text_8 font text_4"
|
|
|
|
placeholder="再输入密码"
|
|
|
|
bindinput="onInput"
|
|
|
|
data-field="currentPwd"
|
|
|
|
value="{{ currentPwd }}"
|
|
|
|
/>
|
2025-05-28 16:47:08 +00:00
|
|
|
</view>
|
2025-05-29 13:31:35 +00:00
|
|
|
<view class="flex-col justify-start items-center text-wrapper mt-20" bind:tap="resetPwd"><text class="font text_5">重置密码</text></view>
|
2025-05-28 16:47:08 +00:00
|
|
|
</view>
|