ww664853070 2 years ago
parent
commit
ccbd7f3bec
  1. 12
      web/client/src/sections/humanAffairs/containers/employeeInformation.jsx

12
web/client/src/sections/humanAffairs/containers/employeeInformation.jsx

@ -37,7 +37,7 @@ const employeeInformation = (props) => {
{ name: "职位", value: "userJob" }, { name: "职位", value: "userJob" },
{ name: "岗位", value: "userPost" }, { name: "岗位", value: "userPost" },
{ name: "在职状态", value: "userActiveStatus" }, { name: "在职状态", value: "userActiveStatus" },
{ name: "绩点", value: "point" }, { name: "绩点", value: "gradePoint" },
{ name: "所属机构", value: "userOrganization" }, { name: "所属机构", value: "userOrganization" },
{ name: "技术职级等级", value: "technicalGrade" }, { name: "技术职级等级", value: "technicalGrade" },
{ name: "证件号", value: "idNumber" }, { name: "证件号", value: "idNumber" },
@ -83,7 +83,7 @@ const employeeInformation = (props) => {
localStorage.getItem(EMPLOYEEINFORMATION) == null localStorage.getItem(EMPLOYEEINFORMATION) == null
? localStorage.setItem( ? localStorage.setItem(
EMPLOYEEINFORMATION, EMPLOYEEINFORMATION,
JSON.stringify(['userName', 'departmrnt', 'userJob', 'userPost', 'userActiveStatus', 'point', 'userOrganization', 'technicalGrade', JSON.stringify(['userName', 'departmrnt', 'userJob', 'userPost', 'userActiveStatus', 'gradePoint', 'userOrganization', 'technicalGrade',
'hiredate', 'age', 'phoneNumber', 'marital', 'politicsStatus', 'educationBackground', 'hiredate', 'age', 'phoneNumber', 'marital', 'politicsStatus', 'educationBackground',
'graduatedFrom', 'employmentLife', 'occupationalHistory']) 'graduatedFrom', 'employmentLife', 'occupationalHistory'])
) )
@ -243,9 +243,11 @@ const employeeInformation = (props) => {
}, { }, {
title: '绩点', title: '绩点',
width: 100, width: 100,
dataIndex: "point", dataIndex: "gradePoint",
key: "point", key: "gradePoint",
render: (_, r, index) => <span>-</span>, render: (_, r, index) => {
return r.gradePoint || '-';
},
}, { }, {
title: ( title: (
<div> <div>

Loading…
Cancel
Save