|
@@ -0,0 +1,309 @@
|
|
|
+import React,{Component} from "react";
|
|
|
+import {Button} 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";
|
|
|
+
|
|
|
+class Archives extends Component{
|
|
|
+ constructor(props) {
|
|
|
+ super(props);
|
|
|
+ this.state={
|
|
|
+ columns:[
|
|
|
+ {
|
|
|
+ title: "员工编号",
|
|
|
+ dataIndex: "employeeId",
|
|
|
+ key: "employeeId",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "门禁编号",
|
|
|
+ dataIndex: "doorId",
|
|
|
+ key: "doorId",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "名称",
|
|
|
+ dataIndex: "name",
|
|
|
+ key: "name",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "员工状态",
|
|
|
+ dataIndex: "statusName",
|
|
|
+ key: "statusName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "所属系统",
|
|
|
+ dataIndex: "systemName",
|
|
|
+ key: "systemName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "公司名称",
|
|
|
+ dataIndex: "depName",
|
|
|
+ key: "depName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "职位名称",
|
|
|
+ dataIndex: "jobsName",
|
|
|
+ key: "jobsName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "等级名称",
|
|
|
+ dataIndex: "starName",
|
|
|
+ key: "starName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "级别",
|
|
|
+ dataIndex: "lvlName",
|
|
|
+ key: "lvlName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "入职时间",
|
|
|
+ dataIndex: "entryTimes",
|
|
|
+ key: "entryTimes",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "转正时间",
|
|
|
+ dataIndex: "promotionTimes",
|
|
|
+ key: "promotionTimes",
|
|
|
+ render: (text) => {
|
|
|
+ let time = moment(text).valueOf();
|
|
|
+ let today = Date.parse(new Date());
|
|
|
+ let sevenDay = 604800000;
|
|
|
+ if (time - today < sevenDay) {
|
|
|
+ return (
|
|
|
+ <span style={{ color: "red", fontWeight: 900 }}>{text}</span>
|
|
|
+ );
|
|
|
+ }
|
|
|
+ return text;
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "生日日期",
|
|
|
+ dataIndex: "birthdays",
|
|
|
+ key: "birthdays",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "性别",
|
|
|
+ dataIndex: "sex",
|
|
|
+ key: "sex",
|
|
|
+ render: (text) => {
|
|
|
+ if (text === 0) {
|
|
|
+ return "男";
|
|
|
+ } else if (text === 1) {
|
|
|
+ return "女";
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "婚姻状态",
|
|
|
+ dataIndex: "marriageName",
|
|
|
+ key: "marriageName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "子/女",
|
|
|
+ dataIndex: "son",
|
|
|
+ key: "son",
|
|
|
+ render: (text, record) => {
|
|
|
+ return <span>{text + "/" + record.girl}</span>;
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "政治面貌",
|
|
|
+ dataIndex: "politicalOutlookName",
|
|
|
+ key: "politicalOutlookName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "教育经历",
|
|
|
+ dataIndex: "educationName",
|
|
|
+ key: "educationName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "毕业学校",
|
|
|
+ dataIndex: "school",
|
|
|
+ key: "school",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "专业",
|
|
|
+ dataIndex: "major",
|
|
|
+ key: "major",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "职称",
|
|
|
+ dataIndex: "title",
|
|
|
+ key: "title",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "晋升备注",
|
|
|
+ dataIndex: "promotionRemarks",
|
|
|
+ key: "promotionRemarks",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "晋升时间",
|
|
|
+ dataIndex: "promotionTime",
|
|
|
+ key: "promotionTime",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "合同时间",
|
|
|
+ dataIndex: "contractStart",
|
|
|
+ key: "contractStart",
|
|
|
+ render: (text, record) => {
|
|
|
+ let end = moment(record.contractEnd).valueOf();
|
|
|
+ let today = Date.parse(new Date());
|
|
|
+ let sevenDay = 604800000;
|
|
|
+ if (text) {
|
|
|
+ if (end - today < sevenDay) {
|
|
|
+ return (
|
|
|
+ <span style={{ color: "red", fontWeight: 900 }}>
|
|
|
+ {text + "~" + record.contractEnd}
|
|
|
+ </span>
|
|
|
+ );
|
|
|
+ }
|
|
|
+ return text + "~" + record.contractEnd;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "手机号码",
|
|
|
+ dataIndex: "mobile",
|
|
|
+ key: "mobile",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "电话",
|
|
|
+ dataIndex: "fixedTel",
|
|
|
+ key: "fixedTel",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "身份证",
|
|
|
+ dataIndex: "idCard",
|
|
|
+ key: "idCard",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "发证机构",
|
|
|
+ dataIndex: "certificationAuthority",
|
|
|
+ key: "certificationAuthority",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "户籍地址",
|
|
|
+ dataIndex: "residenceName",
|
|
|
+ key: "residenceName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "籍贯",
|
|
|
+ dataIndex: "nativePlaceName",
|
|
|
+ key: "nativePlaceName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "现住地址",
|
|
|
+ dataIndex: "nowName",
|
|
|
+ key: "nowName",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "紧急联系人",
|
|
|
+ dataIndex: "emergencyContact",
|
|
|
+ key: "emergencyContact",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "紧急联系人电话",
|
|
|
+ dataIndex: "emergencyMobile",
|
|
|
+ key: "emergencyMobile",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "离职时间",
|
|
|
+ dataIndex: "quitTime",
|
|
|
+ key: "quitTime",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "工作年限",
|
|
|
+ dataIndex: "workingYear",
|
|
|
+ key: "workingYear",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "年龄",
|
|
|
+ dataIndex: "age",
|
|
|
+ key: "age",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "出生月份",
|
|
|
+ dataIndex: "month",
|
|
|
+ key: "month",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "参保时间",
|
|
|
+ dataIndex: "insuranceStartTimes",
|
|
|
+ key: "insuranceStartTimes",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "停保时间",
|
|
|
+ dataIndex: "insuranceEndTimes",
|
|
|
+ key: "insuranceEndTimes",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "公积金时间",
|
|
|
+ dataIndex: "fundStartTimes",
|
|
|
+ key: "fundStartTimes",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "停办公积金时间",
|
|
|
+ dataIndex: "fundEndTimes",
|
|
|
+ key: "fundEndTimes",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ visible:false,
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ render() {
|
|
|
+ const ref = React.createRef();
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <DataTable
|
|
|
+ ref={ref}
|
|
|
+ headerTitle='人事档案统计'
|
|
|
+ url='/api/admin/personnel/selectList'
|
|
|
+ method='get'
|
|
|
+ rowKey='id'
|
|
|
+ scroll={{x:3500}}
|
|
|
+ columns={this.state.columns}
|
|
|
+ search={{
|
|
|
+ filterType: 'query',
|
|
|
+ labelWidth: 'auto',
|
|
|
+ defaultCollapsed: false,
|
|
|
+ }}
|
|
|
+ onRow={(record) => ({
|
|
|
+ onClick: (e) => {
|
|
|
+ e.stopPropagation();
|
|
|
+ this.setState({
|
|
|
+ visible: true,
|
|
|
+ organizationInfor: record,
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })}
|
|
|
+ toolBarRender={[
|
|
|
+ <Button
|
|
|
+ type='primary'
|
|
|
+ key='addUser'
|
|
|
+ onClick={(e)=>{
|
|
|
+ e.stopPropagation();
|
|
|
+ this.setState({
|
|
|
+ visible: true,
|
|
|
+ })
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ 新增员工档案
|
|
|
+ </Button>
|
|
|
+ ]}
|
|
|
+ />
|
|
|
+ {this.state.visible && <NewEmployees
|
|
|
+ formRef={ref}
|
|
|
+ visible={this.state.visible}
|
|
|
+ onCancel={()=>{
|
|
|
+ this.setState({
|
|
|
+ visible: false,
|
|
|
+ })
|
|
|
+ }}
|
|
|
+ /> }
|
|
|
+ </>
|
|
|
+ )
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+export default Archives;
|