applyLeader.wxml 3.2 KB

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