Browse Source

(*)员工信息模块,绩点数据更新

master
zmh 2 years ago
parent
commit
8545a9f83b
  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: "userPost" },
{ name: "在职状态", value: "userActiveStatus" },
{ name: "绩点", value: "point" },
{ name: "绩点", value: "gradePoint" },
{ name: "所属机构", value: "userOrganization" },
{ name: "技术职级等级", value: "technicalGrade" },
{ name: "证件号", value: "idNumber" },
@ -83,7 +83,7 @@ const employeeInformation = (props) => {
localStorage.getItem(EMPLOYEEINFORMATION) == null
? localStorage.setItem(
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',
'graduatedFrom', 'employmentLife', 'occupationalHistory'])
)
@ -243,9 +243,11 @@ const employeeInformation = (props) => {
}, {
title: '绩点',
width: 100,
dataIndex: "point",
key: "point",
render: (_, r, index) => <span>-</span>,
dataIndex: "gradePoint",
key: "gradePoint",
render: (_, r, index) => {
return r.gradePoint || '-';
},
}, {
title: (
<div>

Loading…
Cancel
Save