|
@@ -1,9 +1,11 @@
|
|
|
import React,{Component} from "react";
|
|
|
-import {Button} from "antd";
|
|
|
+import {Button, message} from "antd";
|
|
|
import DataTable from "@/components/common/DataTable";
|
|
|
import moment from 'moment';
|
|
|
import NewEmployees from './components/newEmployees';
|
|
|
-import AddOrganization from "@/pages/admin/organization/mechanism/components/addOrganization";
|
|
|
+import PersonnelDetails from './components/personnelDetails';
|
|
|
+import {getSelectSuperId} from "@/services/user";
|
|
|
+import {ProFormSelect} from "@ant-design/pro-form";
|
|
|
|
|
|
class Archives extends Component{
|
|
|
constructor(props) {
|
|
@@ -24,16 +26,49 @@ class Archives extends Component{
|
|
|
title: "名称",
|
|
|
dataIndex: "name",
|
|
|
key: "name",
|
|
|
+ searchBool:true,
|
|
|
},
|
|
|
{
|
|
|
title: "员工状态",
|
|
|
dataIndex: "statusName",
|
|
|
- key: "statusName",
|
|
|
+ key: "status",
|
|
|
+ searchBool:true,
|
|
|
+ valueType: 'select',
|
|
|
+ valueEnum: {
|
|
|
+ '0': {
|
|
|
+ text: '实习生',
|
|
|
+ },
|
|
|
+ '1': {
|
|
|
+ text: '在职(试用期)',
|
|
|
+ },
|
|
|
+ '2': {
|
|
|
+ text: '在职(合同期)',
|
|
|
+ },
|
|
|
+ '3': {
|
|
|
+ text: '兼职',
|
|
|
+ },
|
|
|
+ '4': {
|
|
|
+ text: '离职',
|
|
|
+ },
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "所属系统",
|
|
|
dataIndex: "systemName",
|
|
|
- key: "systemName",
|
|
|
+ key: "system",
|
|
|
+ searchBool: true,
|
|
|
+ valueType: 'select',
|
|
|
+ valueEnum: {
|
|
|
+ '0': {
|
|
|
+ text: '管理系统',
|
|
|
+ },
|
|
|
+ '1': {
|
|
|
+ text: '营销系统',
|
|
|
+ },
|
|
|
+ '2': {
|
|
|
+ text: '技术系统',
|
|
|
+ },
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "公司名称",
|
|
@@ -59,11 +94,15 @@ class Archives extends Component{
|
|
|
title: "入职时间",
|
|
|
dataIndex: "entryTimes",
|
|
|
key: "entryTimes",
|
|
|
+ valueType: 'dateRange',
|
|
|
+ searchBool: true,
|
|
|
},
|
|
|
{
|
|
|
title: "转正时间",
|
|
|
dataIndex: "promotionTimes",
|
|
|
key: "promotionTimes",
|
|
|
+ valueType: 'dateRange',
|
|
|
+ searchBool: true,
|
|
|
render: (text) => {
|
|
|
let time = moment(text).valueOf();
|
|
|
let today = Date.parse(new Date());
|
|
@@ -85,6 +124,16 @@ class Archives extends Component{
|
|
|
title: "性别",
|
|
|
dataIndex: "sex",
|
|
|
key: "sex",
|
|
|
+ searchBool: true,
|
|
|
+ valueType: 'select',
|
|
|
+ valueEnum: {
|
|
|
+ 0:{
|
|
|
+ text:'男'
|
|
|
+ },
|
|
|
+ 1:{
|
|
|
+ text:'女'
|
|
|
+ }
|
|
|
+ },
|
|
|
render: (text) => {
|
|
|
if (text === 0) {
|
|
|
return "男";
|
|
@@ -96,7 +145,20 @@ class Archives extends Component{
|
|
|
{
|
|
|
title: "婚姻状态",
|
|
|
dataIndex: "marriageName",
|
|
|
- key: "marriageName",
|
|
|
+ key: "marriage",
|
|
|
+ searchBool: true,
|
|
|
+ valueType: 'select',
|
|
|
+ valueEnum: {
|
|
|
+ "0":{
|
|
|
+ text:'未婚'
|
|
|
+ },
|
|
|
+ "1":{
|
|
|
+ text:'已婚'
|
|
|
+ },
|
|
|
+ "2":{
|
|
|
+ text:'离异'
|
|
|
+ }
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
title: "子/女",
|
|
@@ -109,12 +171,47 @@ class Archives extends Component{
|
|
|
{
|
|
|
title: "政治面貌",
|
|
|
dataIndex: "politicalOutlookName",
|
|
|
- key: "politicalOutlookName",
|
|
|
+ key: "politicalOutlook",
|
|
|
+ searchBool: true,
|
|
|
+ valueType: 'select',
|
|
|
+ valueEnum: {
|
|
|
+ "0":{
|
|
|
+ text:'群众'
|
|
|
+ },
|
|
|
+ "1":{
|
|
|
+ text:'中共预备党员'
|
|
|
+ },
|
|
|
+ "2":{
|
|
|
+ text:'中共党员'
|
|
|
+ },
|
|
|
+ "3":{
|
|
|
+ text:'致公党员'
|
|
|
+ }
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
title: "教育经历",
|
|
|
dataIndex: "educationName",
|
|
|
- key: "educationName",
|
|
|
+ key: "education",
|
|
|
+ searchBool: true,
|
|
|
+ valueType: 'select',
|
|
|
+ valueEnum: {
|
|
|
+ "0": {
|
|
|
+ text: '高中/中专'
|
|
|
+ },
|
|
|
+ "1": {
|
|
|
+ text: '专科/高职'
|
|
|
+ },
|
|
|
+ "2": {
|
|
|
+ text: '本科'
|
|
|
+ },
|
|
|
+ "3": {
|
|
|
+ text: '研究生'
|
|
|
+ },
|
|
|
+ "5": {
|
|
|
+ text: '博士'
|
|
|
+ },
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: "毕业学校",
|
|
@@ -145,19 +242,21 @@ class Archives extends Component{
|
|
|
title: "合同时间",
|
|
|
dataIndex: "contractStart",
|
|
|
key: "contractStart",
|
|
|
+ valueType: 'dateRange',
|
|
|
+ searchBool: true,
|
|
|
render: (text, record) => {
|
|
|
let end = moment(record.contractEnd).valueOf();
|
|
|
let today = Date.parse(new Date());
|
|
|
let sevenDay = 604800000;
|
|
|
- if (text) {
|
|
|
+ if (record.contractStart) {
|
|
|
if (end - today < sevenDay) {
|
|
|
return (
|
|
|
<span style={{ color: "red", fontWeight: 900 }}>
|
|
|
- {text + "~" + record.contractEnd}
|
|
|
+ {record.contractStart + "~" + record.contractEnd}
|
|
|
</span>
|
|
|
);
|
|
|
}
|
|
|
- return text + "~" + record.contractEnd;
|
|
|
+ return record.contractStart + "~" + record.contractEnd;
|
|
|
}
|
|
|
},
|
|
|
},
|
|
@@ -210,11 +309,28 @@ class Archives extends Component{
|
|
|
title: "离职时间",
|
|
|
dataIndex: "quitTime",
|
|
|
key: "quitTime",
|
|
|
+ valueType: 'dateRange',
|
|
|
+ searchBool: true,
|
|
|
},
|
|
|
{
|
|
|
title: "工作年限",
|
|
|
dataIndex: "workingYear",
|
|
|
- key: "workingYear",
|
|
|
+ key: "workingYears",
|
|
|
+ searchBool: true,
|
|
|
+ valueEnum: {
|
|
|
+ "0":{
|
|
|
+ text:'0-1年'
|
|
|
+ },
|
|
|
+ "1":{
|
|
|
+ text:'1-3年'
|
|
|
+ },
|
|
|
+ "2":{
|
|
|
+ text:'3-10年'
|
|
|
+ },
|
|
|
+ "3":{
|
|
|
+ text:'10年以上'
|
|
|
+ }
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
title: "年龄",
|
|
@@ -246,9 +362,86 @@ class Archives extends Component{
|
|
|
dataIndex: "fundEndTimes",
|
|
|
key: "fundEndTimes",
|
|
|
},
|
|
|
+ {
|
|
|
+ title: "所属公司",
|
|
|
+ dataIndex: "company",
|
|
|
+ key: "company",
|
|
|
+ hideInTable: true,
|
|
|
+ searchBool: true,
|
|
|
+ renderFormItem: () => {
|
|
|
+ return (
|
|
|
+ <ProFormSelect label='' request={this.departmentList}/>
|
|
|
+ );
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "生日月份",
|
|
|
+ dataIndex: "birthdayMonth",
|
|
|
+ key: "birthdayMonth",
|
|
|
+ hideInTable: true,
|
|
|
+ searchBool: true,
|
|
|
+ valueType: 'select',
|
|
|
+ valueEnum: {
|
|
|
+ "1":{
|
|
|
+ text:'一月'
|
|
|
+ },
|
|
|
+ "2":{
|
|
|
+ text:'二月'
|
|
|
+ },
|
|
|
+ "3":{
|
|
|
+ text:'三月'
|
|
|
+ },
|
|
|
+ "4":{
|
|
|
+ text:'四月'
|
|
|
+ },
|
|
|
+ "5":{
|
|
|
+ text:'五月'
|
|
|
+ },
|
|
|
+ "6":{
|
|
|
+ text:'六月'
|
|
|
+ },
|
|
|
+ "7":{
|
|
|
+ text:'七月'
|
|
|
+ },
|
|
|
+ "8":{
|
|
|
+ text:'八月'
|
|
|
+ },
|
|
|
+ "9":{
|
|
|
+ text:'九月'
|
|
|
+ },
|
|
|
+ "10":{
|
|
|
+ text:'十月'
|
|
|
+ },
|
|
|
+ "11":{
|
|
|
+ text:'十一月'
|
|
|
+ },
|
|
|
+ "12":{
|
|
|
+ text:'十二月'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
],
|
|
|
visible:false,
|
|
|
+ userInfo: {},
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 部门
|
|
|
+ departmentList = async() => {
|
|
|
+ const msg = await getSelectSuperId();
|
|
|
+ if(msg.error.length === 0){
|
|
|
+ let theArr = [];
|
|
|
+ msg.data.forEach((item) => {
|
|
|
+ theArr.push({
|
|
|
+ label: item.name,
|
|
|
+ value: item.id
|
|
|
+ });
|
|
|
+ });
|
|
|
+ return theArr;
|
|
|
+ }else{
|
|
|
+ message.info(msg.error[0].message)
|
|
|
}
|
|
|
+ return [];
|
|
|
}
|
|
|
|
|
|
render() {
|
|
@@ -263,6 +456,28 @@ class Archives extends Component{
|
|
|
rowKey='id'
|
|
|
scroll={{x:3500}}
|
|
|
columns={this.state.columns}
|
|
|
+ requestProcess={(v)=>{
|
|
|
+ if(v && v.promotionTimes){
|
|
|
+ v.promotionStart = v.promotionTimes[0];
|
|
|
+ v.promotionEnd = v.promotionTimes[1];
|
|
|
+ delete v.promotionTimes;
|
|
|
+ }
|
|
|
+ if(v && v.entryTimes){
|
|
|
+ v.entryStart = v.entryTimes[0];
|
|
|
+ v.entryEnd = v.entryTimes[1];
|
|
|
+ delete v.entryTimes;
|
|
|
+ }
|
|
|
+ if(v && v.quitTime){
|
|
|
+ v.quitStart = v.quitTime[0];
|
|
|
+ v.quitEnd = v.quitTime[1];
|
|
|
+ delete v.quitTime;
|
|
|
+ }
|
|
|
+ if(v && v.contractStart){
|
|
|
+ v.contractEnd = v.contractStart[1];
|
|
|
+ v.contractStart = v.contractStart[0];
|
|
|
+ }
|
|
|
+ return v;
|
|
|
+ }}
|
|
|
search={{
|
|
|
filterType: 'query',
|
|
|
labelWidth: 'auto',
|
|
@@ -301,6 +516,7 @@ class Archives extends Component{
|
|
|
})
|
|
|
}}
|
|
|
/> }
|
|
|
+ <PersonnelDetails userInfo={this.state.userInfo}/>
|
|
|
</>
|
|
|
)
|
|
|
}
|