| 1234567891011121314151617181920212223242526 |
- <!-- <view style='background:#EFEFF4;height:winHeight'> -->
- <form bindsubmit='bindNow'>
- <view class='commonHview' style='margin-top:50rpx; height:90rpx;'>
- <view class='register_left_str' style='width:35%;' >国家/地区</view>
- <view class='register_left_str2' >中国(+86)</view>
- <view style='width:20%;'><image class='nextImg' src='../../img/next.png'></image></view>
- </view>
- <view class='commonhline' style='height:3rpx;'></view>
- <view class='commonHview' style='height:90rpx;'>
- <view class='register_left_str'>手机号码:</view>
- <view class='register_input' style=' width:40%;'>
- <input name="phoneNumber" maxlength='16' value='{{phoneNumber}}' placeholder='填写手机号码' bindinput='getphoneNumber' maxlength='11' placeholder-style='color:#B2B2B2;'></input></view>
- <view style='height:90rpx;width:3rpx;background-color:#F5F5F5;'></view>
- <view wx:if='{{!clickCode}}' style='font-size:30rpx; line-height: 90rpx;margin-left:10rpx;color:#1AAD19;text-align: right;' bindtap='getvCode'>获取验证码</view>
- <view wx:else style='font-size:30rpx; line-height: 90rpx;margin-left:10rpx;color:#B2B2B2'>{{countdownTime}}S后重新获取</view>
- </view>
- <view class='commonhline' style='height:3rpx;'></view>
- <view class='commonHview' style='height:90rpx;' >
- <view class='register_left_str'>验证码</view>
- <view class='register_input'>
- <input name="vCode" type='number' maxlength='6' value='{{vCode}}' placeholder='输入验证码' placeholder-style='color:#B2B2B2;'></input></view>
- </view>
- <button form-type='submit' class='comBtn' hover-class="commonclick-btn">立即绑定</button>
- </form>
- <!-- </view> -->
|