连接了我的项目,我的抽成

This commit is contained in:
2025-05-29 21:31:35 +08:00
parent 48e92710d6
commit bafd46bf63
12 changed files with 208 additions and 37 deletions

View File

@ -1,13 +1,33 @@
<view class="flex-col page">
<view class="flex-col section">
<text class="self-start font text">15888610253</text>
<view class="self-start font text">{{ phone }}</view>
<view class="flex-row justify-between self-stretch group">
<input class="font text_2" placeholder="验证码" />
<text class="font text_3">获取验证码</text>
<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>
</view>
<input class="text_1 font" placeholder="密码" />
<input
class="text_1 font"
placeholder="密码"
bindinput="onInput"
data-field="password"
value="{{ password }}"
/>
<view class="self-stretch divider"></view>
<input class="text_8 font text_4" placeholder="再输入密码" />
<input
class="text_8 font text_4"
placeholder="再输入密码"
bindinput="onInput"
data-field="currentPwd"
value="{{ currentPwd }}"
/>
</view>
<view class="flex-col justify-start items-center text-wrapper mt-20"><text class="font text_5">重置密码</text></view>
<view class="flex-col justify-start items-center text-wrapper mt-20" bind:tap="resetPwd"><text class="font text_5">重置密码</text></view>
</view>