applyLeader.wxml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <view class="bg">
  2. <view class="newAddress-top"></view>
  3. <view class="newAddress-line">
  4. <view class="newAddress-title">姓 名</view>
  5. <input maxlength="11" class="nameText" placeholder="你的姓名" placeholder-class="text-placeholder" bindinput="bindName" />
  6. <view class="clean"></view>
  7. </view>
  8. <view class="newAddress-line">
  9. <view class="newAddress-title">手 机</view>
  10. <input type="number" maxlength="11" class="nameText" placeholder="你的手机号码" placeholder-class="text-placeholder" bindinput="bindPhone" />
  11. <!--<button class="bind-wx" open-type="getPhoneNumber" bindgetphonenumber="getTel">使用微信手机号</button>-->
  12. </view>
  13. <view class="newAddress-line">
  14. <view class="yzm-textBlock">
  15. <view class="newAddress-title">验证码</view>
  16. <input type="number" maxlength="11" class="nameText" placeholder="请输入短信验证码" placeholder-class="text-placeholder" bindinput="bindYzm" />
  17. </view>
  18. <form wx:if="{{ countdown <= 0 }}" bindsubmit="getYzm" report-submit="{{true}}" class="getyzm">
  19. <button formType="submit" class="getyzm-btn">
  20. 获取验证码
  21. </button>
  22. </form>
  23. <view class="nogetyzm" wx:if="{{ countdown > 0 }}" >重新发送({{countdown}})</view>
  24. <view class="clean"></view>
  25. </view>
  26. <picker mode="region" bindchange="bindRegionChange" value="{{region}}" >
  27. <view class="newAddress-line">
  28. <view class="newAddress-title">所在地区</view>
  29. <view class="newAddress-picker ">
  30. <image class="newAddress-picker__icon" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/right.png"></image>
  31. <view class="ellipsis newAddress-picker__text">{{address}}</view>
  32. </view>
  33. <view class="clean"></view>
  34. </view>
  35. </picker>
  36. <view class="newAddress-more">
  37. <view class="newAddress-more__title">详细地址</view>
  38. <textarea maxlength="120" class="textarea" auto-height placeholder="如道路、门牌号等" placeholder-class="text-placeholder" bindinput="bindMore" />
  39. </view>
  40. <view class="newAddress-more">
  41. <view class="newAddress-more__title">备注(选填)</view>
  42. <textarea maxlength="120" class="textarea" auto-height placeholder="可留言给客服哦" placeholder-class="text-placeholder" bindinput="bindRemark" />
  43. </view>
  44. <form bindsubmit="save" report-submit="{{true}}" class="newAddress-form">
  45. <button formType="submit" class="newAddress-btn">
  46. 保存
  47. </button>
  48. <p class="submittips">说明:申请后,我们会尽快与您做进一步沟通,请耐心等待。</p>
  49. </form>
  50. </view>