adddupporters.wxml 5.0 KB
<!--pages/main/addtionalreduce/adddupporters/adddupporters.wxml-->
<import src="../../../common/picker_cell" />

<view class='page'>
  <form bindsubmit='formSubmit'>
    <view style='height:90rpx;padding:0 30rpx'>
      <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text>
      <text style='color:#777;font-size: 30rpx;line-height: 90rpx; float:left'>共同赡养人姓名</text>
      <!-- <input placeholder-class='input_placeholder_wrap'  class='input_wrap' placeholder='请输入姓名' name='name' value='{{name}}'  maxlength='18'></input> -->
      <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入姓名' name='name' value='{{name}}'></input>
    </view>
    <view style="margin:0 30rpx;background:#e5e5e5;height:2rpx;"></view>
    <picker bindchange="bindCardtypeChange" value="{{index}}" range="{{cardTypeArray}}">
    <view style='height:90rpx;padding:0 30rpx '>
      <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text>
      <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 style="margin:0 30rpx;background:#e5e5e5;height:2rpx;"></view>
    <view style='height:90rpx;padding:0 30rpx'>
      <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text>
      <text style='color:#777;font-size: 30rpx;line-height: 90rpx; float:left'>共同赡养人证照号码</text>
      <view wx:if="{{cardtype=='居民身份证'}}">
        <image class='image_camera float_right' src='/images/camera.png' bindtap='getIdInfo' id="children_id_card_no"></image>
        <input class='input_wrap01 float_right' placeholder='请输入或拍摄身份证' placeholder-class='text_999_30' name='id_card_no' maxlength='18' type='idcard' value='{{id_card_no}}' bindinput="bindinput"></input>
      </view>
      <view wx:else>
        <input class='input_wrap01 float_right' placeholder='请输入证件号码' placeholder-class='text_999_30' name='id_card_no' maxlength='24' value='{{id_card_no}}' bindinput="bindinput"></input>
      </view>
    </view>
    <view style="margin:0 30rpx;background:#e5e5e5;height:2rpx;"></view>
    <picker mode="date" value="{{date}}" start="1919-01-01" end="2017-09-01" bindchange="bindDateChange">
      <view style='height:90rpx;padding:0 30rpx'>
        <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text>
        <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="{{birthday.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'>{{birthday}}</text>
      </view>
    </picker>
    <!-- <template is="picker_cell_normal" data="{{...commonbirthDate}}" /> -->
    <view style="margin:0 30rpx;background:#e5e5e5;height:2rpx;"></view>
    <!-- <view style='height:90rpx;padding:0 30rpx'>
      <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text>
      <text style='color:#777;font-size: 30rpx;line-height: 90rpx; float:left'>被赡养人国籍</text>
      <text style='color:#333;font-size: 30rpx;line-height: 90rpx; float:right'>中国</text>
    </view> -->
    <picker bindchange="bindnationChange" value="{{index}}" range="{{countryArray}}">
    <view style='height:90rpx;padding:0 30rpx '>
      <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text>
      <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="{{nation.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'>{{nation}}</text>
    </view>
  </picker>
    <view style="margin:0 30rpx;background:#e5e5e5;height:2rpx;"></view>
    <view style='height:90rpx;padding:0 30rpx'>
      <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text>
      <text style='color:#777;font-size: 30rpx;line-height: 90rpx; float:left'>与纳税人关系</text>
      <text style='color:#333;font-size: 30rpx;line-height: 90rpx; float:right'>兄、弟、姐、妹</text>
    </view>
    <view style="margin:0 30rpx;background:#e5e5e5;height:2rpx;"></view>
    <view class="btn_bottom">
      <button class="btn_bottom" formType="submit"> 保存</button>
    </view>
  </form>
</view>