|
|
|
@ -6,7 +6,7 @@ |
|
|
|
<view class="name"> |
|
|
|
<view style="font-size: 32rpx;margin-right: 35rpx;">{{form.baseInfoDto.name}}</view> |
|
|
|
<view style="font-size: 28rpx;color:#999999 ;">信息完整度:</view> |
|
|
|
<view style="color:#04b8ad;">{{form.integrityData.score}}%</view> |
|
|
|
<view style="color:#04b8ad;">{{form.integrityData.score}}</view> |
|
|
|
</view> |
|
|
|
<view class="tags"> |
|
|
|
<view class="tag" wx:for="{{form.baseInfoDto.categoryInfo.categoryNames}}" wx:key="index">{{item}}</view> |
|
|
|
@ -18,7 +18,7 @@ |
|
|
|
</view> |
|
|
|
<view class="form"> |
|
|
|
<view class="form_label">地址:</view> |
|
|
|
<view class="form_value"><text >{{form |
|
|
|
<view class="form_value"><text>{{form |
|
|
|
.resideInfoDtos[0].agencyName}}</text>{{form.resideInfoDtos[0].homeName}}</view> |
|
|
|
</view> |
|
|
|
<view class="form"> |
|
|
|
@ -40,18 +40,22 @@ |
|
|
|
<view class="title">基础信息</view> |
|
|
|
<view class="info"> |
|
|
|
<view class="item"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="label">国籍:</view> |
|
|
|
<View class="value">{{form.baseInfoDto.nationalityName|| '--' }}</View> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="label">证件类型:</view> |
|
|
|
<View class="value">{{idTypeList[form.baseInfoDto.idType].label}}</View> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="label">证件号:</view> |
|
|
|
<View class="value">{{form.baseInfoDto.idNum}}</View> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="label">联系电话:</view> |
|
|
|
<View class="value">{{form.baseInfoDto.mobile}}</View> |
|
|
|
</view> |
|
|
|
@ -74,12 +78,206 @@ |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<view class="label">婚姻状况:</view> |
|
|
|
<View class="value"> {{marriageName}}</View> |
|
|
|
<View class="value"> {{marriageName||'--'}}</View> |
|
|
|
|
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<view class="label">籍贯:</view> |
|
|
|
<View class="value">{{form.baseInfoDto.nativePlace}}</View> |
|
|
|
<View class="value">{{form.baseInfoDto.nativePlace||'--'}}</View> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="card" id="reside"> |
|
|
|
<view class="title">居住信息</view> |
|
|
|
<view class="info" wx:for="{{form.resideInfoDtos}}" wx:key="index" style="margin-top: 20rpx;"> |
|
|
|
<view class="item"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="label">所属网格:</view> |
|
|
|
<View class="value">{{item.gridName|| '--' }}</View> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="label">所属房屋:</view> |
|
|
|
<View class="value">{{item.agencyName}}{{item.homeName }}</View> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="label">人房关系:</view> |
|
|
|
<View class="value">{{ |
|
|
|
item.resiHouseRel != null |
|
|
|
? item.resiHouseRel === 0 |
|
|
|
? "自住" |
|
|
|
: item.resiHouseRel === 1 |
|
|
|
? "租住" |
|
|
|
: "--" |
|
|
|
: "--" |
|
|
|
}}</View> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="label">人房状况:</view> |
|
|
|
<View class="value">{{item.agencyName}}{{item.homeName }}</View> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="label">户籍所在地:</view> |
|
|
|
<View class="value"> {{ item.placeOfDomicile || "--" }}</View> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text class="must">*</text> |
|
|
|
<view class="label">与户主关系:</view> |
|
|
|
<View class="value"> {{dicts.houseHolderRelArr[item.houseHolderRel].label || "--" }}</View> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="card" id="ext"> |
|
|
|
<view class="title">拓展信息</view> |
|
|
|
<view class="info"> |
|
|
|
<view class="item"> |
|
|
|
<view class="label">宗教信仰:</view> |
|
|
|
<view class="value">{{ |
|
|
|
form.religionDto && form.religionDto.religion |
|
|
|
? form.religionDto.religion |
|
|
|
: "--" |
|
|
|
}}</view> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<view class="must">*</view> |
|
|
|
<view class="label">就业状态:</view> |
|
|
|
<View class="value">{{dicts.careerStatusArr[form.workInfoDto.careerStatus].label || '--'}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{form.workInfoDto && form.workInfoDto.careerStatus >= 1 && form.workInfoDto.careerStatus <= 5}}"> |
|
|
|
<view class="label">工作单位:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.workInfoDto |
|
|
|
? form.workInfoDto.workUnit |
|
|
|
? form.workInfoDto.workUnit |
|
|
|
: "--" |
|
|
|
: "--" |
|
|
|
}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{ form.unemployedDto && (form.workInfoDto.careerStatus == 0 || form.workInfoDto.careerStatus == 6)}}"> |
|
|
|
<view class="label">原工作单位:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.unemployedDto |
|
|
|
? form.unemployedDto.originWorkUnit |
|
|
|
? form.unemployedDto.originWorkUnit |
|
|
|
: "--" |
|
|
|
: "--" |
|
|
|
}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{form.workInfoDto && form.workInfoDto.careerStatus >= 1 && form.workInfoDto.careerStatus <= 5}}"> |
|
|
|
<view class="label">职业:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.workInfoDto |
|
|
|
? form.workInfoDto.occupation |
|
|
|
? form.workInfoDto.occupation |
|
|
|
: "--" |
|
|
|
: "--" |
|
|
|
}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{ form.unemployedDto && (form.workInfoDto.careerStatus == 0 ||form.workInfoDto.careerStatus == 6)}}"> |
|
|
|
<view class="label">失业时间:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.unemployedDto |
|
|
|
? form.unemployedDto.unemploymentTime |
|
|
|
? form.unemployedDto.unemploymentTime |
|
|
|
: "--" |
|
|
|
: "--" |
|
|
|
}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{form.economyDto && form.workInfoDto.careerStatus >= 1 &&form.workInfoDto.careerStatus <= 5}}"> |
|
|
|
<view class="label">月收入:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.economyDto |
|
|
|
? form.economyDto.monthIncome |
|
|
|
? form.economyDto.monthIncome |
|
|
|
: "--" |
|
|
|
: "--" |
|
|
|
}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{ form.unemployedDto && (form.workInfoDto.careerStatus == 0 || form.workInfoDto.careerStatus == 6)}}"> |
|
|
|
<view class="label">失业证号:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.unemployedDto |
|
|
|
? form.unemployedDto.unemploymentNum |
|
|
|
? form.unemployedDto.unemploymentNum |
|
|
|
: "--" |
|
|
|
: "--" |
|
|
|
}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{ form.unemployedDto &&(form.workInfoDto.careerStatus == 0 ||form.workInfoDto.careerStatus == 6)}}"> |
|
|
|
<view class="label">失业原因:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.unemployedDto |
|
|
|
? form.unemployedDto.unemploymentReason |
|
|
|
? form.unemployedDto.unemploymentReason |
|
|
|
: "--" |
|
|
|
: "--" |
|
|
|
}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{ form.unemployedDto &&(form.workInfoDto.careerStatus == 0 ||form.workInfoDto.careerStatus == 6)}}"> |
|
|
|
<view class="label">失业原因:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.unemployedDto |
|
|
|
? form.unemployedDto.employmentNum |
|
|
|
? form.unemployedDto.employmentNum |
|
|
|
: "--" |
|
|
|
: "--" |
|
|
|
}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{ form.unemployedDto && (form.workInfoDto.careerStatus == 0 ||form.workInfoDto.careerStatus == 6)}}"> |
|
|
|
<view class="label">技术特长:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.unemployedDto |
|
|
|
? form.unemployedDto.specialSkill |
|
|
|
? form.unemployedDto.specialSkill |
|
|
|
: "--" |
|
|
|
: "--" |
|
|
|
}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{ form.unemployedDto &&(form.workInfoDto.careerStatus == 0 || form.workInfoDto.careerStatus == 6)}}"> |
|
|
|
<view class="label">是否领取失业金:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.unemployedDto.unempCompensationFlag != null |
|
|
|
? form.unemployedDto.unempCompensationFlag === 0 |
|
|
|
? "否" |
|
|
|
: form.unemployedDto.unempCompensationFlag === 1 |
|
|
|
? "是" |
|
|
|
: "--" |
|
|
|
: "--"}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{ form.unemployedDto &&(form.workInfoDto.careerStatus == 0 ||form.workInfoDto.careerStatus == 6)}}"> |
|
|
|
<view class="label">是否就业困难对象:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.unemployedDto.employmentHardFlag != null |
|
|
|
? form.unemployedDto.employmentHardFlag === 0 |
|
|
|
? "否" |
|
|
|
: form.unemployedDto.employmentHardFlag === 1 |
|
|
|
? "是" |
|
|
|
: "--" |
|
|
|
: "--"}}</View> |
|
|
|
</view> |
|
|
|
<view class="item" wx:if="{{ form.workInfoDto &&(form.workInfoDto.careerStatus == 0 ||form.workInfoDto.careerStatus == 6)}}"> |
|
|
|
<view class="label">劳动就业愿望:</view> |
|
|
|
<View class="value">{{ |
|
|
|
form.workInfoDto |
|
|
|
? form.workInfoDto.employmentWish |
|
|
|
? form.workInfoDto.employmentWish |
|
|
|
: "--" |
|
|
|
: "--"}}</View> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<view class="label">有无赡养人:</view> |
|
|
|
<View class="value">{{form.familyInfoDto && |
|
|
|
form.familyInfoDto.elderlyFlag == 1 |
|
|
|
? "有" |
|
|
|
: form.familyInfoDto && |
|
|
|
form.familyInfoDto.elderlyFlag == 0 |
|
|
|
? "无" |
|
|
|
: "--"}}</View> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
@ -95,7 +293,7 @@ |
|
|
|
</view> |
|
|
|
<view class="card" id="graph"> |
|
|
|
<view class="title">关系图谱</view> |
|
|
|
<resi-graph resiId="{{resiId}}"></resi-graph> |
|
|
|
<resi-graph resiId="{{resiId}}" bind:clickGraphNode="clickGraphNode"></resi-graph> |
|
|
|
</view> |
|
|
|
|
|
|
|
<!-- 走访打卡 --> |
|
|
|
@ -114,11 +312,11 @@ |
|
|
|
|
|
|
|
|
|
|
|
<view class="bto_btn"> |
|
|
|
<button class="btn" hover-class="blue" bind:tap="toEvent">上报诉求</button> |
|
|
|
<button class="btn" hover-class="blue" bind:tap="toWebView" wx:if="{{agencyLevel!=='street'}}"> |
|
|
|
满意度调查</button> |
|
|
|
<view class="btn" bind:tap="toEvent">上报诉求</view> |
|
|
|
<view class="btn" bind:tap="toWebView" wx:if="{{agencyLevel!=='street'}}"> |
|
|
|
满意度调查</view> |
|
|
|
<!-- --> |
|
|
|
<button class="btn blue">走访打卡</button> |
|
|
|
<view class="btn blue">走访打卡</view> |
|
|
|
</view> |
|
|
|
<van-dialog use-slot title="密码验证" show="{{ checkPassword }}" show-cancel-button bind:close="onClosePassword" bind:confirm="onConfirmassword" custom-class="dialog" confirm-button-color="#3974f6"> |
|
|
|
<view> |
|
|
|
|