Browse Source

(*)员工信息列表 加"绩点"字段

master
wuqun 2 years ago
parent
commit
fa5c998626
  1. 9
      web/client/src/sections/humanAffairs/containers/employeeInformation.jsx

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

@ -34,6 +34,7 @@ const employeeInformation = (props) => {
{ name: "姓名", value: "userName" },
{ name: "所属部门", value: "departmrnt" },
{ name: "职位", value: "roleName" },
{ name: "绩点", value: "point" },
{ name: "证件号", value: "idNumber" },
{ name: "性别", value: "gender" },
{ name: "籍贯", value: "nativePlace" },
@ -77,7 +78,7 @@ const employeeInformation = (props) => {
localStorage.getItem(EMPLOYEEINFORMATION) == null
? localStorage.setItem(
EMPLOYEEINFORMATION,
JSON.stringify(['userName', 'departmrnt', 'roleName', 'hiredate', 'age', 'phoneNumber', 'marital', 'politicsStatus', 'educationBackground',
JSON.stringify(['userName', 'departmrnt', 'roleName', 'point', 'hiredate', 'age', 'phoneNumber', 'marital', 'politicsStatus', 'educationBackground',
'graduatedFrom', 'employmentLife', 'occupationalHistory'])
)
: "";
@ -235,6 +236,12 @@ const employeeInformation = (props) => {
}
</div>);
},
}, {
title: '绩点',
width: 100,
dataIndex: "point",
key: "point",
render: (_, r, index) => <span></span>,
}, {
title: '证件号',
width: 180,

Loading…
Cancel
Save