verify_info.wxml 3.3 KB
<view class='page'>
  <view style='background:#FDFBEA;height:96rpx;width:100%;text-align:center'>
    <text style='font-size:30rpx;color:#E47C4A;font-family:PingFang-SC-Medium;line-height:96rpx'>为了您的账户安全,请先完成实名认证</text>
  </view>

  <view hidden="{{is_foreigner=='true'}}">
    <view style='display:flex;flex-direction:row;background:#fff'>
      <!--左边 身份信息 -->
      <view style='margin:40rpx 0 30rpx 130rpx'>
        <view style='display:flex;flex-direction:row;height:48rpx;width:100%;'>
          <image style='margin-left:30rpx; width: 24px;height: 24px' src='/images/step_first_blue.png'></image>
          <view style='background:#357aeb;width:90px;height:4rpx;align-self:center;'></view>
        </view>
        <view style='font-size: 17px;color: #000;margin-top:16rpx'>身份信息</view>
      </view>
      <!--右边 上传证件照 -->
      <view style='margin:40rpx 100rpx 30rpx 0'>
        <view style='display:flex;flex-direction:row;height:48rpx;width:100%;'>
          <view style='background:#bcc3c7;width:90px;height:4rpx;align-self:center;'></view>
          <image style='margin-right:30rpx; width: 24px;height: 24px' src='/images/step_second_gray.png'></image>
        </view>
        <view style='font-size: 17px;color: #999;margin-top:16rpx;text-align:right'>上传证件照</view>
      </view>
    </view>
  </view>

  <view style='flex-direction: column;display: flex;background:#fff'>
    <view hidden="{{is_foreigner=='false'}}">
      <picker bindchange="bindCardtypeChange" value="{{index}}" range="{{cardTypeArray}}">
        <view style='height:90rpx;padding:0 30rpx '>
          <text style='color:#777;font-size: 30rpx;line-height: 90rpx; float:left'>证照类型</text>
          <image class='arrow_wrap' src='/images/arrow_right.png' style='margin-top:26rpx'></image>
          <text wx:if="{{cardtype.length<1}}" class='text_999_30 float_right' style="line-height: 90rpx;">请选择</text>
          <text wx:else style='color:#333;font-size: 30rpx;line-height: 90rpx; float:right'>{{cardtype}}</text>
        </view>
      </picker>
      <view class="divide_line_30"></view>
    </view>

    <view style='padding-left: 30rpx;padding-right: 30rpx;'>
      <text class='text_777_30 float_left' style='line-height: 90rpx'>姓名</text>
      <input class='input_wrap' placeholder='请输入您的真实姓名' value='{{name}}' placeholder-class='text_999_30' maxlength='15' bindinput='nameInput'></input>
    </view>
    <view class="divide_line_30"></view>

    <view style='padding-left: 30rpx;padding-right: 30rpx;'>
      <text class='text_777_30 float_left' style='line-height: 90rpx'>身份证件号码</text>
      <view wx:if="{{is_foreigner=='false'}}">
        <input class='input_wrap' placeholder='请输入您的身份证号码' placeholder-class='text_999_30' name='id_card_no' maxlength='18' value='{{card_number}}'  bindinput="bindinputcardnum"  type='idcard'></input>
      </view>
      <view wx:else>
        <input class='input_wrap' placeholder='请输入您的证件号码' placeholder-class='text_999_30' name='id_card_no' maxlength='20' value='{{card_number}}'  bindinput="bindinputcardnum" ></input>
      </view>
    </view>
  </view>

  <view class='bottom_btn_wrap'>
    <view class='btn_blue_radius' bindtap="gonext">
      <view class='text_white_34'>{{btn_text}}</view>
    </view>
  </view>
</view>