login.wxml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <view style="background: #f5f5f5; padding: 20rpx 0;">
  2. <view class="goodslist_boxs">
  3. <view class="input-group">
  4. <label>园所</label>
  5. <!-- <input type="text" placeholder="请输入园所名称" /> -->
  6. <picker mode="selector"
  7. range="{{gardenList}}"
  8. range-key="name"
  9. value="{{gardenIndex}}"
  10. bindchange="onGardenChange">
  11. <view class="picker">
  12. {{gardenIndex !== null ? gardenList[gardenIndex].name : '请选择园所'}}
  13. </view>
  14. </picker>
  15. </view>
  16. <view class="input-group">
  17. <label>姓名</label>
  18. <view>
  19. <input bindinput="onContactsInput" type="text" placeholder="请输入姓名" />
  20. </view>
  21. </view>
  22. <view class="input-group">
  23. <label>手机号码</label>
  24. <view>
  25. <input value="{{phone}}" bindinput="onPhoneInput" type="text" placeholder="请输入常用的手机号码" />
  26. </view>
  27. </view>
  28. <captcha id="registorCaptcha" phone="{{phone}}" />
  29. <!-- <view class="input-group">
  30. <label>验证码</label>
  31. <view style="display: flex;">
  32. <input style="width: 95%;margin-right: 3%;" type="text" placeholder="请输入验证码" />
  33. <button class="get-code-btn">获取验证码</button>
  34. </view>
  35. </view> -->
  36. <button class="confirm-btn" bindtap="bindingevents">确定</button>
  37. </view>
  38. </view>