mirror of
https://gitee.com/qingqing-coconut-tea/RcKtFezyRAZX
synced 2026-07-21 10:32:32 +08:00
33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
<!-- pages/bind-phone/bind-phone.wxml -->
|
||
<!-- 绑定手机号视图 -->
|
||
|
||
<view class="bind-phone-container">
|
||
<view class="header">
|
||
<text class="title">绑定手机号</text>
|
||
<text class="subtitle">为了保障您的账号安全,请绑定手机号</text>
|
||
</view>
|
||
|
||
<view class="form">
|
||
<view class="form-item">
|
||
<text class="iconfont icon-phone form-icon"></text>
|
||
<input class="form-input" type="number" maxlength="11" placeholder="请输入手机号" bindinput="onPhoneInput" value="{{phone}}" />
|
||
</view>
|
||
|
||
<view class="form-item verify-code-item">
|
||
<text class="iconfont icon-verify form-icon"></text>
|
||
<input class="form-input" type="number" maxlength="6" placeholder="请输入验证码" bindinput="onVerifyCodeInput" value="{{verifyCode}}" />
|
||
<button class="send-code-btn {{countdown > 0 ? 'disabled' : ''}}" bindtap="onSendVerifyCode" disabled="{{countdown > 0}}">
|
||
{{sendBtnText}}
|
||
</button>
|
||
</view>
|
||
|
||
<button class="bind-btn" bindtap="doBind" loading="{{loading}}">绑定</button>
|
||
</view>
|
||
</view>
|
||
|
||
/**
|
||
* @联系作者:16768118056
|
||
* @描述:(此项目非免费分享)源码百分百可用,搞定毕设不发愁,支持远程调试安装、二次开发、定制、讲解、文档类。
|
||
* @访问:https://www.notmaker.com/detail/8326a897119d4542896c863a69d7bbe7/gtt20260415,查看完整运行演示。
|
||
*/
|