|
|
@ -1,105 +1,217 @@ |
|
|
|
<!--subpages/addResi/pages/addResi/addResi.wxml--> |
|
|
|
<view class="header"> |
|
|
|
<image src="../../../../images/back.png" class="back" style=" top: {{statusHeight}}px;width: 50rpx;height: 50rpx;" bindtap="back" mode="" /> |
|
|
|
<image class="header-bg" src="../images/header.png" mode="widthFix" /> |
|
|
|
<view class="navigation" style="height: {{navigationHeight}}px; top: {{statusHeight}}px;"> |
|
|
|
{{formType == 'edit' ? '修改人口信息' : '新增人口信息'}} |
|
|
|
</view> |
|
|
|
<view class="content"> |
|
|
|
<view class="h2">填写居民信息</view> |
|
|
|
<view class="tag">带 <b>*</b> 号为必填项 |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="content"> |
|
|
|
<view class="form_card"> |
|
|
|
<view class="title"> |
|
|
|
<text class="tag"></text> 基本信息 |
|
|
|
<van-steps steps="{{ stepsList }}" custom-class="steps" inactive-color="" active-color="#3974f6" active="{{ activeForm }}"></van-steps> |
|
|
|
</view> |
|
|
|
<view class="house_box" wx:if="{{activeForm === 0}}"> |
|
|
|
<view class=" form_height_all" wx:for="{{form.resideInfoDtos}}" class="form_card" style="margin-bottom: 20rpx;" wx:for-index="indexP"> |
|
|
|
<view class="title"> |
|
|
|
<text class="tag"></text> 选择居住房屋{{indexP+1}} |
|
|
|
</view> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">所属组织</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangeGrid" data-indexP="{{indexP}}" range-key="label" value="{{index}}" range="{{gridList}}"> |
|
|
|
<view class="{{form.resideInfoDtos[indexP].gridName?'':'gray'}}"> |
|
|
|
{{form.resideInfoDtos[indexP].gridName ? form.resideInfoDtos[indexP].gridName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">所在小区</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangevillageId" range-key="label" data-indexP="{{indexP}}" value="{{index}}" range="{{form.resideInfoDtos[indexP].optionsV}}"> |
|
|
|
<view class="{{form.resideInfoDtos[indexP].villageName?'':'gray'}}"> |
|
|
|
{{form.resideInfoDtos[indexP].villageName ? form.resideInfoDtos[indexP].villageName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">所在楼栋</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangebuilding" range-key="label" value="{{index}}" range="{{form.resideInfoDtos[indexP].optionsB}}" data-indexP="{{indexP}}"> |
|
|
|
<view class="{{form.resideInfoDtos[indexP].buildingName?'':'gray'}}"> |
|
|
|
{{form.resideInfoDtos[indexP].buildingName ? form.resideInfoDtos[indexP].buildingName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">所在单元</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangeUnit" range-key="label" value="{{index}}" range="{{form.resideInfoDtos[indexP].optionsD}}" data-indexP="{{indexP}}"> |
|
|
|
<view class="{{form.resideInfoDtos[indexP].unitName?'':'gray'}}"> |
|
|
|
{{form.resideInfoDtos[indexP].unitName ? form.resideInfoDtos[indexP].unitName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label "> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">所在房屋</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangeHouse" range-key="label" value="{{index}}" range="{{form.resideInfoDtos[indexP].optionsH}}" data-indexP="{{indexP}}"> |
|
|
|
<view class="{{form.resideInfoDtos[indexP].houseName?'':'gray'}}"> |
|
|
|
{{form.resideInfoDtos[indexP].houseName ? form.resideInfoDtos[indexP].houseName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label "> |
|
|
|
<view class="title">人房关系</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangeResiHouseRel" range-key="label" value="{{index}}" range="{{resiHouseRelList}}" data-indexP="{{indexP}}"> |
|
|
|
<view class="{{form.resideInfoDtos[indexP].resiHouseRelName?'':'gray'}}"> |
|
|
|
{{form.resideInfoDtos[indexP].resiHouseRelName ? form.resideInfoDtos[indexP].resiHouseRelName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label "> |
|
|
|
<view class="title">与户主关系</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangehouseHolderRel" range-key="label" value="{{index}}" range="{{dicts.houseHolderRelList}}" data-indexP="{{indexP}}"> |
|
|
|
<view class="{{form.resideInfoDtos[indexP].houseHolderRelName?'':'gray'}}"> |
|
|
|
{{form.resideInfoDtos[indexP].houseHolderRelName ? form.resideInfoDtos[indexP].houseHolderRelName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label "> |
|
|
|
<view class="title">户籍所在地</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="bindPlaceOfDomicileInput" bindinput="bindPlaceOfDomicileInput"value="{{form.resideInfoDtos[indexP].placeOfDomicile}}" placeholder-class="gray" placeholder="请输入" data-indexP="{{indexP}}" /> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label "> |
|
|
|
<view class="title">现居住地址</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="bindCurrentResidenceInput" bindinput="bindCurrentResidenceInput" value="{{form.resideInfoDtos[indexP].currentResidence}}" placeholder-class="gray" placeholder="请输入" data-indexP="{{indexP}}"/> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label "> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">迁出时间</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker mode="date" value="{{form.resideInfoDtos[indexP].outOfTime}}" end="{{day}}" bindchange="bindOutOfTimeChange" data-indexP="{{indexP}}"> |
|
|
|
<view class="{{form.resideInfoDtos[indexP].outOfTime?'':'gray'}}"> |
|
|
|
{{form.resideInfoDtos[indexP].outOfTime ? form.resideInfoDtos[indexP].outOfTime : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="house_btn"> |
|
|
|
<button bind:tap="addHouse">+</button> |
|
|
|
<button bind:tap="delHouse" data-indexP="{{indexP}}" wx:if="{{form.resideInfoDtos.length>1}}">-</button> |
|
|
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_card form_height" wx:if="{{activeForm === 1}}"> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">所在网格</view> |
|
|
|
<view class="title">姓名</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangeGrid" range-key="label" value="{{index}}" range="{{gridList}}"> |
|
|
|
<view class="{{form.gridName?'':'gray'}}"> |
|
|
|
{{form.gridName ? form.gridName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
<input confirm-type="next" bindblur="bindNameInput" bindinput="bindNameInput" value="{{form.name}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">所在小区</view> |
|
|
|
<view class="title">证件类型</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangevillageId" range-key="label" value="{{index}}" range="{{villageList}}"> |
|
|
|
<view class="{{villageName?'':'gray'}}"> |
|
|
|
{{villageName ? villageName : '请选择'}} |
|
|
|
<picker bindchange="" range-key="label" value="{{index}}" range="{{}}"> |
|
|
|
<view class="{{form.baseInfoDto.idType?'':'gray'}}"> |
|
|
|
{{genderName ? genderName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">所在楼栋</view> |
|
|
|
<view class="title">证件号</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangebuilding" range-key="label" value="{{index}}" range="{{buildingList}}"> |
|
|
|
<view class="{{buildingName?'':'gray'}}"> |
|
|
|
{{buildingName ? buildingName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
<input confirm-type="next" bindblur="bindIdNumInput" bindinput="bindidNumInput" value="{{form.idNum}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
|
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">所在单元</view> |
|
|
|
<view class="title">国籍</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangeUnit" range-key="label" value="{{index}}" range="{{unitList}}"> |
|
|
|
<view class="{{unitName?'':'gray'}}"> |
|
|
|
{{unitName ? unitName : '请选择'}} |
|
|
|
<picker bindchange="" range-key="label" value="{{index}}" range="{{}}"> |
|
|
|
<view class="{{form.baseInfoDto.idType?'':'gray'}}"> |
|
|
|
{{genderName ? genderName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_house"> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label "> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">所在房屋</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangeHouse" range-key="label" value="{{index}}" range="{{houseList}}"> |
|
|
|
<view class="{{houseName?'':'gray'}}"> |
|
|
|
{{houseName ? houseName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_bottom">选项中如无该房屋,请先 |
|
|
|
<text bind:tap="handelJump">新增房屋</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">姓名</view> |
|
|
|
<view class="title">联系电话</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="bindNameInput" bindinput="bindNameInput" value="{{form.name}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
<input confirm-type="next" bindblur="bindMobileInput" bindinput="bindmobileInput" value="{{form.mobile}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
@ -128,144 +240,293 @@ |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">证件号</view> |
|
|
|
<view class="title">民族</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="bindIdNumInput" bindinput="bindidNumInput" value="{{form.idNum}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
<block wx:if="{{resiId}}"> |
|
|
|
|
|
|
|
<view bind:tap="showData" wx:if="{{isShowIdNum}}" data-key='idNum'> |
|
|
|
<van-icon name="closed-eye" /> |
|
|
|
<picker bindchange="bindPickerChangeNation" range-key="label" value="{{index}}" range="{{nation}}"> |
|
|
|
<view class="{{form.nation?'':'gray'}}"> |
|
|
|
{{form.nation ? nation[form.nation].label : '请选择'}} |
|
|
|
</view> |
|
|
|
<view bind:tap="hideData" wx:else data-key='idNum'> |
|
|
|
<van-icon name="eye-o" /> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">文化程度</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangeEducation" range-key="label" value="{{index}}" range="{{education}}"> |
|
|
|
<view class="{{form.eduInfoDto.cultureLevel?'':'gray'}}"> |
|
|
|
{{form.eduInfoDto.cultureLevel ? education[form.eduInfoDto.cultureLevel].label : '请选择'}} |
|
|
|
</view> |
|
|
|
</block> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="title">联系电话</view> |
|
|
|
<view class="title">婚姻状况</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="bindMobileInput" bindinput="bindmobileInput" value="{{form.mobile}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
<block wx:if="{{resiId}}"> |
|
|
|
<view bind:tap="showData" wx:if="{{isShowIdTel}}" data-key='mobile'> |
|
|
|
<van-icon name="closed-eye" /> |
|
|
|
<picker bindchange="bindPickerChangemarriage" range-key="label" value="{{index}}" range="{{marriageList}}"> |
|
|
|
<view class="{{form.familyInfoDto.marriage?'':'gray'}}"> |
|
|
|
{{marriageName ? marriageName : '请选择'}} |
|
|
|
</view> |
|
|
|
<view bind:tap="hideData" wx:else data-key='mobile'> |
|
|
|
<van-icon name="eye-o" /> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">配偶情况</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="" range-key="label" value="{{index}}" range="{{}}"> |
|
|
|
<view class="{{form.familyInfoDto.marriage?'':'gray'}}"> |
|
|
|
{{marriageName ? marriageName : '请选择'}} |
|
|
|
</view> |
|
|
|
</block> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_card m-top20"> |
|
|
|
<view class="title"> |
|
|
|
<text class="tag"></text> 详细信息 |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">籍贯</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="bindNativePlaceInput" bindinput="bindNativePlaceInput" value="{{form.resideInfoDto.nativePlace}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">户籍地</view> |
|
|
|
<view class="title">本地户籍</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="bindPlaceOfDomicileInput" bindinput="bindPlaceOfDomicileInput" value="{{form.resideInfoDto.placeOfDomicile}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
<picker bindchange="" range-key="label" value="{{index}}" range="{{}}"> |
|
|
|
<view class="{{form.familyInfoDto.marriage?'':'gray'}}"> |
|
|
|
{{marriageName ? marriageName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view wx:if="{{activeForm === 2}}" class="form_card form_height"> |
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">现居地</view> |
|
|
|
<!-- <text class="must">*</text> --> |
|
|
|
<view class="title">宗教信仰</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="bindCurrentResidenceInput" bindinput="bindCurrentResidenceInput" value="{{form.resideInfoDto.currentResidence}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
<input confirm-type="next" bindblur="" bindinput="" value="{{}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">民族</view> |
|
|
|
<!-- <text class="must">*</text> --> |
|
|
|
<view class="title">就业状态</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangeNation" range-key="label" value="{{index}}" range="{{nation}}"> |
|
|
|
<view class="{{form.nation?'':'gray'}}"> |
|
|
|
{{form.nation ? nation[form.nation].label : '请选择'}} |
|
|
|
<picker bindchange="" range-key="label" value="{{index}}" range="{{}}"> |
|
|
|
<view class="{{form.baseInfoDto.idType?'':'gray'}}"> |
|
|
|
{{genderName ? genderName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">籍贯</view> |
|
|
|
<view class="title">工作单位</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="bindNativePlaceInput" bindinput="bindNativePlaceInput" value="{{form.resideInfoDto.nativePlace}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
<input confirm-type="next" bindblur="" bindinput="" value="{{}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">文化程度</view> |
|
|
|
<view class="title">职业</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangeEducation" range-key="label" value="{{index}}" range="{{education}}"> |
|
|
|
<view class="{{form.eduInfoDto.cultureLevel?'':'gray'}}"> |
|
|
|
{{form.eduInfoDto.cultureLevel ? education[form.eduInfoDto.cultureLevel].label : '请选择'}} |
|
|
|
<input confirm-type="next" bindblur="" bindinput="" value="{{}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">月收入</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="" bindinput="" value="{{}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">原工作单位</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="" bindinput="" value="{{}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">失业时间</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker mode="date" value="{{}}" end="{{day}}" bindchange="bindDateChange"> |
|
|
|
<view class="{{form.birthday?'':'gray'}}"> |
|
|
|
{{form.birthday ? form.birthday : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">失业证号</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="" bindinput="" value="{{}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">婚姻状况</view> |
|
|
|
<view class="title">失业原因</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="bindPickerChangemarriage" range-key="label" value="{{index}}" range="{{marriageList}}"> |
|
|
|
<view class="{{form.familyInfoDto.marriage?'':'gray'}}"> |
|
|
|
{{marriageName ? marriageName : '请选择'}} |
|
|
|
<picker bindchange="" range-key="label" value="{{index}}" range="{{}}"> |
|
|
|
<view class="{{form.baseInfoDto.idType?'':'gray'}}"> |
|
|
|
{{genderName ? genderName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_item "> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">宗教信仰</view> |
|
|
|
<view class="title">再就业优惠证号</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="bindReligionInput" bindinput="bindReligionInput" value="{{form.religionDto.religion}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
<input confirm-type="next" bindblur="" bindinput="" value="{{}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_card m-top20"> |
|
|
|
<view class="title"> |
|
|
|
<text class="tag"></text> 居民类别 |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">技术特长</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<input confirm-type="next" bindblur="" bindinput="" value="{{}}" placeholder-class="gray" placeholder="请输入" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">居民类别</view> |
|
|
|
<view class="title">是否领取失业金</view> |
|
|
|
</view> |
|
|
|
<view class="input" bind:tap="onClick3"> |
|
|
|
<view class="residentCategorySty {{residentCategorySty?'':'gray'}}" style="text-align: left;"> |
|
|
|
{{residentCategorySty ? residentCategorySty : '请选择'}} |
|
|
|
</view> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
<view class="input"> |
|
|
|
<radio-group class="radio_group" bindchange=""> |
|
|
|
<radio value="1" checked="true" color="#3974f6" />是 |
|
|
|
<radio value="0" checked="true" color="#3974f6" />否 |
|
|
|
</radio-group> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">是否就业困难对象</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<radio-group class="radio_group" bindchange=""> |
|
|
|
<radio value="1" checked="true" color="#3974f6" />是 |
|
|
|
<radio value="0" checked="true" color="#3974f6" />否 |
|
|
|
</radio-group> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="form_item" wx:for="{{residentTypeFormCell}}" :key="index" bind:tap="openDynamicForms" data-title="{{item.title}}" data-formtype="{{item.value}}"> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">{{item.title}}</view> |
|
|
|
<view class="title">劳动就业愿望</view> |
|
|
|
</view> |
|
|
|
<view class="input text-right"> |
|
|
|
<view class="input"> |
|
|
|
<picker bindchange="" range-key="label" value="{{index}}" range="{{}}"> |
|
|
|
<view class="{{form.baseInfoDto.idType?'':'gray'}}"> |
|
|
|
{{genderName ? genderName : '请选择'}} |
|
|
|
</view> |
|
|
|
</picker> |
|
|
|
<image src="../../../../images/right.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="form_item"> |
|
|
|
<view class="label"> |
|
|
|
<view class="title">有无赡养老人</view> |
|
|
|
</view> |
|
|
|
<view class="input"> |
|
|
|
<radio-group class="radio_group" bindchange=""> |
|
|
|
<radio value="1" checked="true" color="#3974f6" />是 |
|
|
|
<radio value="0" checked="true" color="#3974f6" />否 |
|
|
|
</radio-group> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="bottom_btn" bind:tap="submit">提交</view> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</view> |
|
|
|
<view class="bot_btn"> |
|
|
|
<button type="default" plain="true" class="bottom_btn bottom_btn_close" bind:tap="close" wx:if="{{activeForm === 0}}">取消</button> |
|
|
|
<button type="default" plain="true" class="bottom_btn bottom_btn_close" bind:tap="backStep" wx:else>上一步</button> |
|
|
|
<button type="primary" class=" btn_bule bottom_btn" bind:tap="nextStep" wx:if="{{activeForm !== 3}}">下一步</button> |
|
|
|
<button type="primary" class=" btn_bule bottom_btn" bind:tap="nextStep" wx:if="{{activeForm === 3}}">提交</button> |
|
|
|
</view> |
|
|
|
|
|
|
|
<wux-select id="wux-select3" /> |
|
|
|
|
|
|
|
<DynamicForms show="{{isShowDynamicForms}}" title="{{dynamicFormsTitle}}" bind:close="closeDynamicForms" bind:ok="okDynamicForms" formController="{{formController}}" /> |
|
|
|
<!-- <DynamicForms show="{{isShowDynamicForms}}" title="{{dynamicFormsTitle}}" bind:close="closeDynamicForms" bind:ok="okDynamicForms" formController="{{formController}}" /> --> |