patient-mini/pages/loginCode/loginCode.wxml
码农搬砖工 9018a4f868 xxx
2025-04-23 18:23:41 +08:00

25 lines
911 B
Plaintext

<t-navbar left-arrow />
<view class="page login-code">
<view class="login-code__title"> 请输入验证码 </view>
<view class="login-code__tips"> 验证码已通过短信发送至 {{ phoneNumber }} </view>
<view class="login-code__input">
<t-input placeholder="输入验证码" value="{{verifyCode}}" type="number" bindchange="onVerifycodeChange">
<view slot="suffix" class="suffix">
<view class="suffix--line"></view>
<t-link
size="medium"
hover
disabled="{{sendCodeCount !== 0}}"
theme="primary"
content="{{sendCodeCount === 0 ? '发送验证码' : sendCodeCount+'秒后重发' }}"
bindtap="sendCode"
/>
</view>
</t-input>
</view>
<view class="login-code__button">
<t-button theme="primary" size="large" block disabled="{{!verifyCode}}" bindtap="login">登录</t-button>
</view>
</view>