You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

160 line
8.9 KiB

  1. <view class="box">
  2. <view class="cntBox">
  3. <view class="cntChiBox">
  4. <view class="title">超级管理员</view>
  5. <view class="headline">超管身份</view>
  6. <view class="inputBox">
  7. <picker class="timeSing" range-key="name" mode="selector" range="{{figureLsit}}" value="{{contactInfo.figureIndex}}" bindchange="bindDateChange1">
  8. <view class="picker">{{figureLsit[contactInfo.figureIndex].name}}</view>
  9. </picker>
  10. <image class="go" mode="margin-left: 40rpx;" src="../../../../static/images/jian.png" role="img"></image>
  11. </view>
  12. <view class="hintBox">若超管为法定代表人/经营者,则该商户入驻流程为:提交申请 - 平台审核 - 超管签约 - 完成入驻</view>
  13. <view wx:if="{{contactInfo.contact_type==1}}">
  14. <view class="headline">超管姓名</view>
  15. <view class="inputBox">
  16. <input class="inp" bindinput="setValue" data-flag="contact_name" value="{{contactInfo.contact_name}}"></input>
  17. </view>
  18. <!-- <view class="headline">超管证件号码</view>
  19. <view class="inputBox">
  20. <input class="inp" bindinput="setValue" data-flag="contact_name"></input>
  21. </view> -->
  22. <view class="headline">手机号码</view>
  23. <view class="inputBox">
  24. <input class="inp" bindinput="setValue" data-flag="mobile_phone" value="{{contactInfo.mobile_phone}}"></input>
  25. </view>
  26. <view class="hintBox">用于接收微信支付的重要管理信息及日常操作验证码,超管签约时可自助修改手机号,并进行短信验证</view>
  27. <view class="headline">电子邮件</view>
  28. <view class="inputBox">
  29. <input class="inp" bindinput="setValue" data-flag="contact_email" value="{{contactInfo.contact_email}}"></input>
  30. </view>
  31. <view class="hintBox">用于接收微信支付的开户邮件及日常业务通知</view>
  32. </view>
  33. <view wx:if="{{contactInfo.contact_type==2}}">
  34. <view class="inputBox">
  35. <picker class="timeSing" range-key="name" mode="selector" range="{{certificateLsit}}" value="{{contactInfo.certificateIndex}}" fields="day" bindchange="bindDateChange2">
  36. <view class="picker">{{certificateLsit[contactInfo.certificateIndex].name}}</view>
  37. </picker>
  38. <image class="go" mode="margin-left: 40rpx;" src="../../../../static/images/jian.png" role="img"></image>
  39. </view>
  40. <view class="headline">身份证人像面照片</view>
  41. <view class="picturesBox">
  42. <view class="addPictur" bindtap="upIdentityZ">+</view>
  43. <view class="imgBox" wx:if="{{contactInfo.contact_id_doc_copy_info.url}}">
  44. <view class="imgDel" bindtap="delIdentityZUrl" wx:if="{{!active1}}">x</view>
  45. <image class="picturesImg" src="{{contactInfo.contact_id_doc_copy_info.url}}" role="img" wx:if="{{!active1}}" bindtap='previewImage' data-type="1"></image>
  46. </view>
  47. </view>
  48. <view class="previewImage" wx:if="{{active1}}">
  49. <image src="{{contactInfo.contact_id_doc_copy_info.url}}" bindtap='normalImage' role="img" data-type="1"></image>
  50. </view>
  51. <view class="headline" wx:if="{{contactInfo.contact_id_doc_type!=2}}">身份证国徽面照片</view>
  52. <view class="picturesBox" wx:if="{{contactInfo.contact_id_doc_type!=2}}">
  53. <view class="addPictur" bindtap="upIdentityF">+</view>
  54. <view class="imgBox" wx:if="{{contactInfo.contact_id_doc_copy_back_info.url}}">
  55. <view class="imgDel" bindtap="delIdentityFUrl" wx:if="{{!active2}}">x</view>
  56. <image class="picturesImg" src="{{contactInfo.contact_id_doc_copy_back_info.url}}" role="img" wx:if="{{!active2}}" bindtap='previewImage' data-type="2"></image>
  57. </view>
  58. </view>
  59. <view class="previewImage" wx:if="{{active2}}">
  60. <image src="{{contactInfo.contact_id_doc_copy_back_info.url}}" bindtap='normalImage' role="img" data-type="2"></image>
  61. </view>
  62. <view class="hintBox">请上传彩色照片 or 彩色扫描件 or 加盖公章鲜章的复印件,可添加“微信支付”相关水印(如微信支付认证)</view>
  63. <view class="headline">证件姓名</view>
  64. <view class="inputBox">
  65. <input class="inp" bindinput="setValue" data-flag="contact_name" value="{{contactInfo.contact_name}}"></input>
  66. </view>
  67. <view class="headline">证件号码</view>
  68. <view class="inputBox">
  69. <input class="inp" bindinput="setValue" data-flag="contact_id_number" value="{{contactInfo.contact_id_number}}"></input>
  70. </view>
  71. <view class="headline">证件有效期类型</view>
  72. <view class="licenseItmeBox">
  73. <view class="{{contactInfo.contact_period_type==1?'btn_a':'btn'}}" bindtap="setlicenseEffectiveIdentityType" data-index="1">定期</view>
  74. <view class="{{contactInfo.contact_period_type==2?'btn_a':'btn'}}" bindtap="setlicenseEffectiveIdentityType" data-index="2">长期</view>
  75. </view>
  76. <view class="headline">证件生效日期</view>
  77. <view class="inputBox">
  78. <image class="calendar" mode="margin-left: 40rpx;" src="../../../../static/images/u73.png" role="img"></image>
  79. <!-- <view >请选择执照生效日期</view> -->
  80. <picker class="timeSing" mode="date" value="{{contactInfo.contact_period_begin}}" fields="day" bindchange="bindDateChange3">
  81. <view class="picker">{{contactInfo.contact_period_begin}}</view>
  82. </picker>
  83. </view>
  84. <view class="headline" wx:if="{{contactInfo.contact_period_type==1}}">证件失效日期</view>
  85. <view class="inputBox" wx:if="{{contactInfo.contact_period_type==1}}">
  86. <image class="calendar" mode="margin-left: 40rpx;" src="../../../../static/images/u73.png" role="img"></image>
  87. <!-- <view >请选择执照生效日期</view> -->
  88. <picker class="timeSing" mode="date" value="{{contactInfo.contact_period_end}}" fields="day" bindchange="bindDateChange4">
  89. <view class="picker">{{contactInfo.contact_period_end}}</view>
  90. </picker>
  91. </view>
  92. <view class="headline">任职部门</view>
  93. <view class="inputBox">
  94. <input class="inp" bindinput="setValue" data-flag="contact_department" value="{{contactInfo.contact_department}}"></input>
  95. </view>
  96. <view class="headline">职务</view>
  97. <view class="inputBox">
  98. <input class="inp" bindinput="setValue" data-flag="contact_job" value="{{contactInfo.contact_job}}"></input>
  99. </view>
  100. <view class="headline">手机号码</view>
  101. <view class="inputBox">
  102. <input class="inp" bindinput="setValue" data-flag="mobile_phone" value="{{contactInfo.mobile_phone}}"></input>
  103. </view>
  104. <view class="hintBox">用于接收微信支付的重要管理信息及日常操作验证码,超管签约时可自助修改手机号,并进行短信验证</view>
  105. <view class="headline">电子邮件</view>
  106. <view class="inputBox">
  107. <input class="inp" bindinput="setValue" data-flag="contact_email" value="{{contactInfo.contact_email}}"></input>
  108. </view>
  109. <view class="hintBox">用于接收微信支付的开户邮件及日常业务通知</view>
  110. <view class="headline">是否有公章</view>
  111. <view class="inputBox">
  112. <picker class="timeSing" range-key="name" mode="selector" range="{{commonLsit}}" value="{{contactInfo.is_index}}" bindchange="setIsSealIndex">
  113. <view class="picker">{{commonLsit[contactInfo.is_index].name}}</view>
  114. </picker>
  115. <image class="go" mode="margin-left: 40rpx;" src="../../../../static/images/jian.png" role="img"></image>
  116. </view>
  117. <view class="headline">业务办理授权函</view>
  118. <view class="picturesBox">
  119. <view class="addPictur" bindtap="authorization">+</view>
  120. <view class="imgBox" wx:if="{{contactInfo.business_authorization_letter_info.url}}">
  121. <view class="imgDel" bindtap="delAuthorization" wx:if="{{!active3}}">x</view>
  122. <image class="picturesImg" src="{{contactInfo.business_authorization_letter_info.url}}" wx:if="{{!active3}}" role="img" bindtap='previewImage' data-type="3"></image>
  123. </view>
  124. </view>
  125. <view class="previewImage" wx:if="{{active3}}">
  126. <image src="{{contactInfo.business_authorization_letter_info.url}}" bindtap='normalImage' role="img" data-type="3"></image>
  127. </view>
  128. <view class="hintBox" bindtap="downloadUrl">1.请上传法定代表人授权函扫描件 <span style="color:#52A0FD">(下载模板)</span></view>
  129. <view class="hintBox">2.请上传2M以内的图片</view>
  130. </view>
  131. </view>
  132. </view>
  133. </view>
  134. <view class="btnBox">
  135. <view class="save" bindtap="save" data-flag="save">保存草稿</view>
  136. <!-- <view class="next" bindtap="save" data-flag="next">下一步</view> -->
  137. </view>