Files
novel_frontend_RcKtFezyRAZX/wechat/pages/bind-phone/bind-phone.wxml
mzltMpfqGS e4a087e67e init
2026-04-15 19:45:16 +08:00

33 lines
1.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 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查看完整运行演示。
*/