submitinfo.wxml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!--pages/mine/wxml/submitinfo/submitinfo.wxml-->
  2. <view class="container">
  3. <view class="title">
  4. <text class="title-text">实名认证</text>
  5. <text>(请上传真实的个人信息,认证通过后将无法修改)</text>
  6. </view>
  7. <form bindsubmit='formSubmit'>
  8. <view class="user-info-form">
  9. <view class="input-box">
  10. <text>姓名</text>
  11. <input id="user-name" type="text" placeholder="请输入真实姓名" bindblur="onCheck" name="userName"></input>
  12. <icon type="warn" size="20" wx:if="{{userNameCheck}}"></icon>
  13. </view>
  14. <view class="input-box">
  15. <text>身份证号</text>
  16. <input id="user-idcard" type="idcard" placeholder="请输入身份证号" bindblur="onCheck" name="userIdcard"></input>
  17. <icon type="warn" size="20" wx:if="{{userIdcardCheck}}"></icon>
  18. </view>
  19. <view class="input-box">
  20. <text>联系电话</text>
  21. <input id="user-phone" type="number" placeholder="请输入手机号码" bindblur="onCheck" name="userPhone"></input>
  22. <icon type="warn" size="20" wx:if="{{userPhoneCheck}}"></icon>
  23. </view>
  24. <view class="input-box">
  25. <text>所属企业</text>
  26. <picker class="" bindchange="bindPickerChange" value="{{pickerIndex}}" range="{{AuctionCompanies}}" name="AuctionCompanies">
  27. <view class="picker">
  28. {{AuctionCompanies[pickerIndex]}}
  29. </view>
  30. </picker>
  31. <icon type="warn" size="20" wx:if="{{pickerCheck}}"></icon>
  32. </view>
  33. </view>
  34. <!-- <view class="up-load-img">
  35. <view class="img-front img-box">
  36. <view class="img-title">
  37. <text>身份证正面照</text>
  38. </view>
  39. <view class="img-tips">
  40. <icon type="info" size="15" color="#fca677"></icon>
  41. <text>请使用手机横向拍摄以保证图片正常显示</text>
  42. </view>
  43. <view class="img-photo">
  44. <image src="{{frontPhoto}}" mode="aspectFill"></image>
  45. <button bindtap='onSelectPhoto' data-btnName="front">点击选择图片</button>
  46. </view>
  47. </view>
  48. <view class="img-back img-box">
  49. <view class="img-title">
  50. <text>身份证反面照</text>
  51. </view>
  52. <view class="img-tips">
  53. <icon type="info" size="15" color="#fca677"></icon>
  54. <text>请使用手机横向拍摄以保证图片正常显示</text>
  55. </view>
  56. <view class="img-photo">
  57. <image src="{{backPhoto}}" mode="aspectFill"></image>
  58. <button bindtap='onSelectPhoto' data-btnName="back">点击选择图片</button>
  59. </view>
  60. </view>
  61. <view class="img-complete img-box">
  62. <view class="img-title">
  63. <text>手持身份证照</text>
  64. </view>
  65. <view class="img-tips">
  66. <icon type="info" size="15" color="#fca677"></icon>
  67. <text>请使用手机横向拍摄以保证图片正常显示</text>
  68. </view>
  69. <view class="img-photo">
  70. <image src="{{completePhoto}}" mode="aspectFill"></image>
  71. <button bindtap='onSelectPhoto' data-btnName="complete">点击选择图片</button>
  72. </view>
  73. </view>
  74. </view> -->
  75. <view class="prompt">
  76. <text class="prompt-line"></text>
  77. <text class="prompt-text">请确认以上信息准确无误</text>
  78. </view>
  79. <button type="primary" form-type="submit" disabled="{{buttonInfo}}">提交</button>
  80. </form>
  81. </view>