clueCollect.wxml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <view class="container">
  2. <image mode="aspectFit" src="/static/images/upgrade/logo.png" class="logo">
  3. </image>
  4. <view class="main">
  5. <view class="info-block">
  6. <view class="head-top">加入鲸致生活</view>
  7. <view class="head-tips">请务必正确、真实填写</view>
  8. <view class="info-item">
  9. <view class="item-title">
  10. <text>* </text>
  11. <view class="question"> 1. 您的完整姓名:</view>
  12. <view class="remark">(请填答该题)</view>
  13. </view>
  14. <view class="input-block">
  15. <input class="input" bindinput="bindName" value="{{name}}" type="text" maxlength="10" placeholder="请输入姓名" placeholder-class="placeholder"/>
  16. </view>
  17. </view>
  18. <view class="info-item">
  19. <view class="item-title">
  20. <text>* </text>
  21. <view class="question"> 2. 您的手机号码:</view>
  22. <view class="remark">(请填答该题)</view>
  23. </view>
  24. <view class="input-tips">请填写正确手机号,以免错失机会</view>
  25. <view class="input-block">
  26. <input class="input" bindinput="bindMobile" value="{{mobile}}" type="number" maxlength="11" placeholder="请输入手机号码" placeholder-class="placeholder"/>
  27. </view>
  28. </view>
  29. <view class="info-item">
  30. <view class="item-title">
  31. <text>* </text>
  32. <view class="question"> 3. 3. 您期望的工作城市:</view>
  33. <view class="remark">(请填答该题)</view>
  34. </view>
  35. <view class="input-tips">请点击选择 </view>
  36. <view class="input-block">
  37. <view class="input-wrapper" bindtap="cityTap">
  38. <input class="input" bindinput="bindMobile" value="{{city}}" type="text" disabled placeholder="请选择城市" placeholder-class="placeholder"/>
  39. <van-icon name="arrow-down" size="12px" color="#000"/>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="submit-btn" bindtap="submit">
  45. 确认提交
  46. </view>
  47. </view>
  48. </view>
  49. <!-- 弹框 -->
  50. <van-popup show="{{showPicker}}" position="bottom">
  51. <van-picker show-toolbar columns="{{columns}}"
  52. bind:cancel="pickerCancel" bind:confirm="pickerConfirm"
  53. />
  54. </van-popup>