zycp-ddxcx/pages/login/bind/bind.axml

36 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-03-09 15:06:54 +08:00
<view>
<view class="verification pull-content list-section">
<view class="phone-txt">
2022-03-10 13:57:25 +08:00
<view class="phone-bg">
<view class="flex">
<text>手机号</text>
<input type="input" onInput="bindKeyInput" placeholder="请输入需要绑定的手机号"/>
</view>
<view class="flex flex-02">
<text>验证码</text>
2022-03-14 19:57:16 +08:00
<input type="input" onInput="bindKeyCode" maxlength="4" placeholder="请输入验证码"/>
2022-03-10 13:57:25 +08:00
<view a:if="{{show}}" onTap="changeCode">获取验证码</view>
<view a:else>{{count}}s后可再获取</view>
</view>
2022-03-09 15:06:54 +08:00
</view>
<view class="login-btns">
2022-03-10 13:57:25 +08:00
<view onTap="bindPhone">确认</view>
2022-03-23 13:40:04 +08:00
<view onTap="passBind">跳过</view>
2022-03-10 13:57:25 +08:00
</view>
2022-03-09 15:06:54 +08:00
</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>