<view> <view class="verification pull-content list-section"> <view class="phone-txt"> <view class="phone-bg"> <view class="flex"> <text>手机号</text> <input type="input" onInput="bindKeyInput" placeholder="请输入需要绑定的手机号"/> </view> <view class="flex flex-02"> <text>验证码</text> <input type="input" onInput="bindKeyCode" placeholder="请输入验证码"/> <view a:if="{{show}}" onTap="changeCode">获取验证码</view> <view a:else>{{count}}s后可再获取</view> </view> </view> <view class="login-btns"> <view onTap="bindPhone">确认</view> </view> </view> </view> <!-- 提示框 --> <view class="addr-select-bg" a:if="{{isToast}}"></view> <view class="toast" a:if="{{isToast}}"> <view>{{toastText}}</view> </view> <!-- 手机验证弹窗 --> <view class="my-confirm-bg" a:if="{{openPhoneTips}}"></view> <view class="my-confirm" a:if="{{openPhoneTips}}"> <text>{{tipsMsg}}</text> <view class="confirm-btns"> <view onTap="modePhone">手机登录</view> <view onTap="clearPhone">更换号码</view> </view> </view> </view>