CompleteTouristInfo.wxml 727 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
<view class="backgroundView" style="background: white">
<form catchsubmit="formSubmit">

<view class="record-input-constainer whiteColor">
<view class="record-input_bg whiteColor" style="border-color:{{inputFocus.nameInput ? '#48C17B' : '#e8eae5'}}">
<label class="record-input_title">姓名</label>
<input class="input" id="name" name="name" maxlength="12" placeholder="请输入建档姓名" value="" placeholder-class="input-placeholder" bindinput="blurNameInput"/>
</view>
<view>生日</view>
<view>性别</view>
</view>

<button class="record-submit-btn" formType="submit">立即注册</button>
</form>
</view>