<!--pages/wxbind/wxbind.wxml-->
|
<view class="base-wrapper">
|
<view class="container">
|
<view class="input-wrapper">
|
<input class="input" placeholder="请输入11位手机号" maxlength="11" bindinput="bindMobileInput" />
|
</view>
|
<view class="input-wrapper">
|
<input class="input" type="number" maxlength="6" placeholder="请输入验证码" bindinput="bindCodeInput" />
|
<button class="code-button" wx:if="{{!codeSent}}" bindtap="sendCode">获取验证码</button>
|
<button class="code-button" wx:if="{{codeSent}}" disabled>重新获取({{countdown}}s)</button>
|
</view>
|
</view>
|
<button class="button {{isButtonEnabled ? 'button-active' : 'button-disabled'}}" bindtap="bind">绑定微信</button>
|
<t-dialog class="error-dialog" visible="{{showErrorDialog}}" content="{{errorData}}" confirm-btn="{{ confirmBtn }}" bind:confirm="closeDialog" />
|
</view>
|