joinMaster.wxml 2.3 KB

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