1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <view class="container">
- <view class="form-box" wx:if="{{isRegist}}">
- <view class="form-item">
- <!-- 用于微信支付人手机号联系 -->
- <input class="phone" value="{{phone}}" disabled="{{disabledUpdate}}" type="number" maxlength="{{11}}" bindinput="bindPhoneInput" placeholder="手机号" />
- <image wx:if="{{ phone.length > 0 }}" id="clear-phone" class="clear" src="/static/images/clear_input.png" catchtap="clearPhone"></image>
- </view>
- <view class="form-item-code">
- <view class="form-item code-item">
- <input class="smscode" disabled="{{disabledUpdate}}" value="{{smscode}}" type="number" bindinput="bindSmscodeInput" placeholder="验证码" />
- <image class="clear" id="clear-smscode" wx:if="{{ smscode.length > 0 }}" src="/static/images/clear_input.png" catchtap="clearCode"></image>
- </view>
- <view class="sms-rr">
- <button class="btn" disabled="{{disabled}}" catchtap="smscode" >{{second}}</button>
- </view>
- </view>
- <view style='width:100%;margin: 0px auto;'>
- <button class="login-btn" open-type="getUserInfo" bindtap="loginUser">手机号绑定登录</button>
- <button class="no-login-btn" bindtap="bindCancelLogin">暂不登录</button>
- </view>
- </view>
- <!-- <view class="form-box" wx:if="{{!isRegist}}">
- <view class="form-item">
- <input class="phone" value="{{phone}}" disabled="{{disabledUpdate}}" type="number" maxlength="{{11}}" bindinput="bindPhoneInput" placeholder="手机号" auto-focus/>
- <image wx:if="{{ phone.length > 0 }}" id="clear-phone" class="clear" src="/static/images/clear_input.png" catchtap="clearPhone"></image>
- </view>
- <view class="form-item-code">
- <view class="form-item code-item">
- <input class="smscode" disabled="{{disabledUpdate}}" value="{{smscode}}" type="number" bindinput="bindSmscodeInput" placeholder="验证码" />
- <image class="clear" id="clear-smscode" wx:if="{{ smscode.length > 0 }}" src="/static/images/clear_input.png" catchtap="clearCode"></image>
- </view>
- <view class="sms-rr">
- <button class="btn" disabled="{{disabled}}" catchtap="smscode" >{{second}}</button>
- </view>
- </view>
- <view style='width:100%;margin: 0px auto;'>
- <button class="regist-btn" open-type="getUserInfo" bindtap="registUser">注册</button>
- </view>
- </view> -->
- <!-- <view class='regist' wx:if="{{isRegist}}" bindtap='showRegist'>立即注册</view> -->
- <view style='margin:80rpx auto 80rpx auto;width:100%;' wx:if="{{isRegist}}">
- <view class='login-third-div'></view>
- <view class='login-third'>
- <view class='login-third-text'>第三方账号登录</view>
- <view class='login-third-div2'></view>
- </view>
-
-
- <view class='sq-weixin-view'>
- <button open-type="getUserInfo" class="sq-weixin" bindgetuserinfo="bindGetUserInfo"></button>
- <!-- <image class="sq-weixin" src="/static/images/weixin_sq.png">
-
- </image> -->
- </view>
- </view>
- </view>
|