captcha.wxml 337 B

12345678
  1. <!--components/captcha/captcha.wxml-->
  2. <view class="input-group">
  3. <label>验证码</label>
  4. <view style="display: flex;">
  5. <input style="width: 95%;margin-right: 3%;" type="text" placeholder="请输入验证码" bindinput="onInputCode"/>
  6. <button bindtap="getCode" class="get-code-btn">获取验证码</button>
  7. </view>
  8. </view>