HasDocumentedVerify.wxml 786 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
<view>
<form catchsubmit="formSubmit">
<view class="record-topbar">为了给您提供精准服务,需要您认证在医院建档的信息</view>
<view class="record-input-constainer">
<view class="record-input_bg" style="border-color:{{inputFocus.codeInput ? '#f4879b' : '#e8eae5'}}">
<label class="record-input_title">验证码</label>
<input class="input" id = "code" name="code" maxlength="12" placeholder="请输入验证码" value="" placeholder-class="input-placeholder" bindfocus="getFocus" bindblur="blurInput"/>
<label class="record-time-text" bindtap="getVerifyCode">{{time == '0s' ? '再次获取' : time}}</label>
</view>
</view>
<button class="record-submit-btn" formType="submit">下一步</button>
</form>
</view>