+
基础信息
+
,
+ },
+ {
+ label: "身份证照片",
+ children:
,
+ },
+ {
+ label: "姓名",
+ children: info.name,
+ },
+ {
+ label: "性别",
+ children: info.sex,
+ },
+
+ {
+ label: "出生年月",
+ children: info.birthday,
+ },
+ {
+ label: "年龄",
+ children: info.age,
+ },
+ {
+ label: "手机号",
+ children: (
+
+ {info.phone}
+
+ ),
+ },
+ {
+ label: "身份证号",
+ children: (
+
+ {UseDecodeIdCard(info.userIdCard) }
+
+ ),
+
+ },
+
+ ...(
+ props.showEmail
+ ? [
+ {
+ label: "电子邮箱",
+ children: info.email,
+ },
+ ]
+ : []
+ ),
+ {
+ label: "民族",
+ children: info.nationName,
+ },
+ // {
+ // label: "婚姻状况",
+ // children: info.maritalStatusName,
+ // },
+ {
+ label: "政治面貌",
+ children: info.politicalAffiliationName,
+ },
+ // {
+ // label: "户口所在地",
+ // children: info.locationAddress,
+ // },
+ // {
+ // label: "现住址",
+ // children: info.currentAddress,
+ // },
+ {
+ label: "文化程度",
+ children: info.culturalLevelName,
+ },
+ {
+ label: "岗位名称",
+ children: info.postName,
+ },
+ ]}
+ column={2}
+ labelStyle={{
+ width: 200,
+ }}
+ />
+
社保信息
+
,
+ },
+ ]
+ : []
+ ),
+ {
+ label: "是否按期缴纳工伤保险",
+ children: info.isInjuriesPay === 1 ? "是" : "否",
+ span: 4,
+ },
+ ...(
+ info.isInjuriesPay === 1
+ ? [
+ {
+ label: "工伤保险有效期",
+ children: info.isInjuriesPayTime,
+ },
+ {
+ label: "工伤保险凭证",
+ children:
,
+ },
+ ]
+ : []
+ ),
+ {
+ label: "是否缴纳商业保险",
+ children: info.ispay === 1 ? "是" : "否",
+ span: 4,
+ },
+ ...(
+ info.ispay === 1
+ ? [
+ {
+ label: "商业保险单号",
+ children: info.ispayNumber,
+ },
+ {
+ label: "保险图片",
+ children:
,
+ },
+ ]
+ : []
+ ),
+ {
+ label: "是否签订劳动合同",
+ children: info.isSignLabor === 1 ? "是" : "否",
+ span: 4,
+ },
+ ...(
+ info.ispay === 1
+ ? [
+
+ {
+ label: "合同图片",
+ children:
,
+ span: 4,
+ },
+ ]
+ : []
+ ),
+ {
+ label: "是否参加三级安全培训",
+ children: info.isLevelThree === 1 ? "是" : "否",
+ span: 4,
+ },
+ ...(
+ info.ispay === 1
+ ? [
+
+ {
+ label: "三级安全培训照片",
+ children:
,
+ span: 4,
+ },
+ ]
+ : []
+ ),
+ ]}
+ column={2}
+ labelStyle={{
+ width: 200,
+ }}
+ />
+
+