changephone.wxml 715 B

12345678910111213141516171819
  1. <view style="background: #f5f5f5; padding: 20rpx 0;">
  2. <view class="goodslist_boxs">
  3. <view class="input-group">
  4. <label>手机号码</label>
  5. <input value="{{phone}}" bindinput="onPhoneInput" type="text" placeholder="请输入手机号码" />
  6. </view>
  7. <captcha id="registorCaptcha" phone="{{phone}}" />
  8. <!-- <view class="input-group">
  9. <label>验证码</label>
  10. <view style="display: flex;">
  11. <input style="width: 95%;margin-right: 3%;" type="text" placeholder="请输入验证码" />
  12. <button class="get-code-btn">获取验证码</button>
  13. </view>
  14. </view> -->
  15. <button class="confirm-btn" bindtap="bindingevents">确定</button>
  16. </view>
  17. </view>