edit-customer.wxml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <import src="../public-view.wxml" />
  2. <!-- <scroll-view scroll-y="{{scroll}}" class="bg-scroll-view" style="height:{{adapter.bgHeight}}rpx"> -->
  3. <template is="customer-header-view" data="{{t: '个人信息填写', s: '仅用于本业务办理,绝不泄露或他用', src: '../../../icon/public/customer_header_e.png'}}" />
  4. <view class="id-card-view">
  5. <view>
  6. <text>身份证信息</text>
  7. <image src="../../../icon/home/new_customer_info.png" mode="aspectFit"></image>
  8. <view bindtap="requireAction">拍摄要求</view>
  9. </view>
  10. <view></view>
  11. <view>
  12. <view>
  13. <text>1</text>
  14. <view></view>
  15. </view>
  16. <text>身份证正面照</text>
  17. <view bindtap="takePhoto" id="1">
  18. <image src="../../../icon/public/customer_camera.png"></image>
  19. </view>
  20. </view>
  21. <view>
  22. <view>
  23. <view></view>
  24. </view>
  25. <image bindtap="checkImage" id="1" src="{{data.first_image}}" mode="aspectFit"></image>
  26. </view>
  27. <view>
  28. <view>
  29. <view></view>
  30. <text>2</text>
  31. </view>
  32. <text>身份证反面照</text>
  33. <view bindtap="takePhoto" id="2">
  34. <image src="../../../icon/public/customer_camera.png"></image>
  35. </view>
  36. </view>
  37. <view>
  38. <view></view>
  39. <image bindtap="checkImage" id="2" src="{{data.second_image}}" mode="aspectFit"></image>
  40. </view>
  41. </view>
  42. <view class="information">
  43. <view class="item">
  44. <text>真实姓名</text>
  45. <text>{{data.user_name}}</text>
  46. </view>
  47. <template is="right-line" />
  48. <view class="item">
  49. <text>民族</text>
  50. <text>{{data.nation}}</text>
  51. </view>
  52. <template is="right-line" />
  53. <view class="item" bindtap="showIdCard">
  54. <text>身份证号</text>
  55. <text>{{data.id_card}}</text>
  56. </view>
  57. <template is="right-line" />
  58. <view class="textarea-item">
  59. <text>户籍地址</text>
  60. <textarea auto-height bindinput="textareaInput" bindfocus="textareaFocus" bindblur = "textareaBlur" value="{{textareaValue}}" maxlength='100' disabled = "{{inputHide}}" class="{{adapter.isIos ? 'textarea-ios' : 'textare-android'}}" style="color:{{inputHide ? 'rgba(0 ,0, 0, 0)' : '#666666'}}"></textarea>
  61. <view class="textarea-placeholder"><text style="color:{{textareaPlaceholderHide ? 'rgba(0,0,0,0)' : '#cccccc'}}">请输入户籍地址</text></view>
  62. </view>
  63. <view class="item">
  64. <text>手机号码</text>
  65. <input type="number" placeholder="请输入手机号码" placeholder-class="input-view-placeholder" value="{{inputValue}}" maxlength="11" bindinput="inputAction"></input>
  66. </view>
  67. <template is="right-line" />
  68. <view class="bank-item" bindtap="editBankCard">
  69. <text>银行卡号</text>
  70. <!-- <view bindtap="bankInfo">
  71. <image src="../../../icon/home/new_customer_info.png"></image>
  72. </view> -->
  73. <text>{{bankCard}}</text>
  74. <image src="../../../icon/public/arrow_right.png"></image>
  75. </view>
  76. <view wx:if="{{data.shebao_card}}" class="item">
  77. <text>社保号</text>
  78. <text>{{data.shebao_card}}</text>
  79. </view>
  80. <template is="right-line" wx:if="{{data.shebao_card && data.fund_card}}" />
  81. <view wx:if="{{data.fund_card}}" class="item">
  82. <text>公积金账号</text>
  83. <text>{{data.fund_card}}</text>
  84. </view>
  85. </view>
  86. <view class="scroll-view-last"></view>
  87. <!-- </scroll-view> -->
  88. <template is="bottom-view-botton" data="{{t: '保存', suffix: adapter.suffix, action: 'saveAction'}}" />
  89. <view class="require-view" catchtouchmove="wxvoid" hidden="{{requireView.hidden}}" bindtap="hiddenRequireView">
  90. <view animation="{{requireView.animation}}">
  91. <view>
  92. <view></view>
  93. <text>身份证照片要求</text>
  94. <image src="../../../icon/public/delete.png" bindtap="hiddenRequireView"></image>
  95. </view>
  96. <view></view>
  97. <text>拍摄实例如下:</text>
  98. <image src="../../../icon/home/photo_require.png"></image>
  99. <text>1. 请上传清晰彩色,完整的原件扫描件或照片
  100. 2. 拍摄确保身份证边框完整、字体清晰、亮度均匀
  101. 3. 身份证各项信息及头像清晰可见,容易识别
  102. 4. 证件必须真实拍摄,不能使用复印件</text>
  103. </view>
  104. </view>
  105. <view class="show-id-card-view" catchtouchmove="wxvoid" hidden="{{verify.hidden}}">
  106. <view>
  107. <image src="../../../icon/public/delete.png" bindtap="hiddenIdCard"></image>
  108. <text>为保护你的信息安全,需验证手机号才能查看完整信息</text>
  109. <view>
  110. <text>验证手机</text>
  111. <text>{{userPhone}}</text>
  112. </view>
  113. <view>
  114. <input maxlength="4" placeholder="验证码" placeholder-class="verify-input-placeholder" type="number" bindinput="verifyInputAction" value="{{verify.code}}"></input>
  115. <view></view>
  116. <view class="{{verify.buttonC}}" bindtap="getVerify">{{verify.buttonT}}</view>
  117. </view>
  118. <view bindtap="getIdCard">确定</view>
  119. </view>
  120. </view>
  121. <!-- <view class="bank-Info" catchtouchmove="wxvoid" hidden="{{bankInfoHidden}}">
  122. <view>
  123. <text>银行卡号</text>
  124. <text>已缴纳的社保流水费用,将返还于该银行卡号上!</text>
  125. <template is="line" />
  126. <view bindtap="dismissBankInfo">好的,我知道了</view>
  127. </view>
  128. </view> -->