341 lines
14 KiB
Plaintext
341 lines
14 KiB
Plaintext
<wxs src="/utils/checkutils.wxs" module="tools" />
|
|
<scroll-view scroll-y style="height:{{scrollHeight}}px;">
|
|
|
|
<view class="page-container">
|
|
<!-- 基础信息 -->
|
|
<view class="form-head-one">
|
|
<view class="form-head">
|
|
<view class="form-head-line"></view>
|
|
<view>基础信息</view>
|
|
</view>
|
|
<view class="form-btns" wx:if="{{id != ''}}">
|
|
<view class="btn-edit btn" bind:tap="doEdit">编辑</view>
|
|
<view class="btn-del btn" bind:tap="doDel">删除</view>
|
|
</view>
|
|
</view>
|
|
<view class="box-container">
|
|
<view class="form-item">
|
|
<view class="form-title ">姓名</view>
|
|
<view class="form-content ">{{bean==null? '未录入':tools.check(bean.name)}}</view>
|
|
</view>
|
|
<view class="form-item" bind:tap="onShowCardType">
|
|
<view class="form-title ">证件类型</view>
|
|
<view class="form-content ">{{bean==null?'未录入':tools.check(bean.idcardType)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title ">证件号码</view>
|
|
<view class="form-content ">{{bean==null?'未录入':tools.check(bean.idcard)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">出生日期</view>
|
|
<view class="form-content">{{bean==''?'未录入':tools.check(bean.birthday)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">性别</view>
|
|
<view class="form-content">{{bean==null?'未录入':tools.check(bean.sex)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">民族</view>
|
|
<view class="form-content">{{bean==null?'未录入':tools.check(bean.nation)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">文化程度</view>
|
|
<view class="form-content">{{bean==null?'未录入':tools.check(bean.education)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">与户主关系</view>
|
|
<view class="form-content">{{bean==null?'未录入':tools.check(bean.relationship)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">联系电话</view>
|
|
<view class="form-content">{{bean==null?'未录入':tools.check(bean.phone)}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 宗教、学历、工作信息 -->
|
|
<view class="form-head">
|
|
<view class="form-head-line"></view>
|
|
<view>宗教、学历、工作等信息</view>
|
|
</view>
|
|
<view class="box-container">
|
|
|
|
<view class="form-item ver">
|
|
<view class="form-title ">就读院校及专业</view>
|
|
<textarea class="form-textarea" placeholder="未录入" placeholder-style="font-size:14px;" value="{{bean==null?'未录入':tools.check(bean.description)}}" disabled="true" />
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">所属党派</view>
|
|
<view class="form-content">{{bean==null? '未录入':tools.check(bean.organization)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">宗教信仰</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.religion)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">婚姻状况</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.marriageStatus)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">婚变日期</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.marriageChangeTime)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">初婚日期</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.marriageFirstTime)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">社会保险情况</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.socialSecurity)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">健康状况</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.healthStatus)}}</view>
|
|
</view>
|
|
<view class="form-item ver">
|
|
<view class="form-title">就业状况</view>
|
|
<radio-group>
|
|
<radio value="已就业" checked="{{bean==null?false:bean.departmentType=='已就业'}}" disabled="true">已就业</radio>
|
|
<radio value="未就业" checked="{{bean==null?false:bean.departmentType=='未就业'}}" disabled="true">未就业</radio>
|
|
<radio value="灵活就业" checked="{{bean==null?false:bean.departmentType=='灵活就业'}}" disabled="true">灵活就业</radio>
|
|
<radio value="退休" checked="{{bean==null?false:bean.departmentType=='退休'}}" disabled="true">退休</radio>
|
|
</radio-group>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">工作单位</view>
|
|
<view class="form-content">{{bean== null? '未录入':tools.check(bean.department)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">工作职务</view>
|
|
<view class="form-content">{{bean== null? '未录入':tools.check(bean.pastion)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">专业技术职称</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.pastionTitle)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">专长</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.expertise)}}</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<!-- 家庭信息 -->
|
|
<view class="form-head">
|
|
<view class="form-head-line"></view>
|
|
<view>家庭信息</view>
|
|
</view>
|
|
<view class="box-container">
|
|
<view class="form-item">
|
|
<view class="form-title">父亲姓名</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.fatherName)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">父亲证件</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.fatherIdcard)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">父亲电话</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.fatherPhone)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">母亲姓名</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.motherName)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">母亲证件</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.motherIdcard)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">母亲电话</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.motherPhone)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">户籍地址</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.domicileAreaName)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">户籍详细地址</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.domicileAddress)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">籍贯地址</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.originAddress)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">流动日期</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.flowTime)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">流动原因</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.flowReason)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">其他原因</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.flowReasontext)}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 老年人 -->
|
|
<view class="form-head">
|
|
<view class="form-head-line"></view>
|
|
<view>老年人</view>
|
|
</view>
|
|
|
|
<view class="box-container">
|
|
|
|
<view class="form-item">
|
|
<view class="form-title">是否为老年人</view>
|
|
<switch checked="{{bean.isOldage=='是'}}" class="form-content" bindchange="onSelIsOld" disabled="true"></switch>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">老人类别</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.oldageType)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">离退休前单位</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.oldageDepartment)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">生活照料情况</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.oldageLift)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">健康情况</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.oldageHealthStatus)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">生活自理能力</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.oldageSelfcare)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">居住状况</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.oldageLive)}}</view>
|
|
</view>
|
|
</view>
|
|
<!-- 残疾人 -->
|
|
<view class="form-head">
|
|
<view class="form-head-line"></view>
|
|
<view>残疾人</view>
|
|
</view>
|
|
<view class="box-container">
|
|
<view class="form-item">
|
|
<view class="form-title">是否为残疾人</view>
|
|
<switch class="form-content" checked="{{bean.isDisability=='是'}}" disabled="true"></switch>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">残疾类别</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.disabilityType)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">残疾等级</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.disabilityLevel)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">残疾证号</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.disabilityNumber)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">残疾车牌号</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.disabilityCarnumber)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">居住地址</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.disabilityAddress)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">收入情况</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.disabilityIncome)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">住房来源</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.disabilityHouse)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">办证时间</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.disabilityTime)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">监护人或配偶姓名</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.disabilityGuardian)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">监护人电话</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.disabilityGuardianPhone)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">监护人关系</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.disabilityGuardianRelation)}}</view>
|
|
</view>
|
|
</view>
|
|
<!-- 服役/退役 -->
|
|
<view class="form-head">
|
|
<view class="form-head-line"></view>
|
|
<view>服役/退役</view>
|
|
</view>
|
|
<view class="box-container">
|
|
<view class="form-item">
|
|
<view class="form-title">是否为服役/退役</view>
|
|
<switch class="form-content" checked="{{bean.isMilitary=='是'}}" disabled="true"></switch>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">批准退出现役日期</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.militaryTime)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">退出现役时职级</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.militaryPosition)}}</view>
|
|
</view>
|
|
|
|
</view>
|
|
<!-- 社会救助 -->
|
|
<view class="form-head">
|
|
<view class="form-head-line"></view>
|
|
<view>社会救助</view>
|
|
</view>
|
|
<view class="box-container">
|
|
<view class="form-item">
|
|
<view class="form-title">是否为社会救助</view>
|
|
<switch class="form-content" checked="{{bean.isSuccour=='是'}}" disabled="true"></switch>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">低保户</view>
|
|
<switch class="form-content" checked="{{bean.succourDibao=='是'}}" disabled="true"></switch>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">医疗救助</view>
|
|
<switch class="form-content" checked="{{bean.succourHelp=='是'}}" disabled="true"></switch>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">困难职工</view>
|
|
<switch class="form-content" checked="{{bean.succourDifficulty=='是'}}" disabled="true"></switch>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">老龄补贴</view>
|
|
<switch class="form-content" checked="{{bean.succourSubsidy=='是'}}" disabled="true"></switch>
|
|
</view>
|
|
</view>
|
|
<!-- 党员信息 -->
|
|
<view class="form-head">
|
|
<view class="form-head-line"></view>
|
|
<view>党员</view>
|
|
</view>
|
|
<view class="box-container">
|
|
<view class="form-item">
|
|
<view class="form-title">是否为党员</view>
|
|
<switch class="form-content" checked="{{bean.isParty=='是'}}" disabled="true"></switch>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">党组织名称</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.partyOrganization)}}</view>
|
|
</view>
|
|
<view class="form-item">
|
|
<view class="form-title">入党时间</view>
|
|
<view class="form-content ">{{bean== null? '未录入':tools.check(bean.partyTime)}}</view>
|
|
</view>
|
|
<view class="form-item ver">
|
|
<view class="form-title">其他说明</view>
|
|
<textarea class="form-textarea" placeholder="为录入" value="{{bean==null?'未录入':tools.check(bean.othertext)}}" placeholder-style="font-size:14px;" disabled="true" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view> |