ソースを参照

新增人事档案

HW 4 年 前
コミット
f1fb2b6d85

+ 2 - 2
config/config.ts

@@ -10,7 +10,7 @@ const { REACT_APP_ENV } = process.env;
 export default defineConfig({
   hash: true,
   antd: {
-    // dark: true,// 暗黑模式
+    dark: true,// 暗黑模式
     compact: true, // 紧凑模式
   },
   dva: {
@@ -41,7 +41,7 @@ export default defineConfig({
   routes,
   // Theme for antd: https://ant.design/docs/react/customize-theme-cn
   theme: {
-    ...darkTheme,
+    // ...darkTheme,
     // black: '#f00',//内容区背景颜色
     // 'popover-background': '#ff0',//侧边栏背景颜色
     // 'component-background': '#fff',//内容容器(比如搜索栏)背景颜色

+ 6 - 0
config/routes.ts

@@ -40,6 +40,12 @@
     component: './admin/organization/mechanism',
     access: 'mechanism',
   },
+  // 人事档案
+  {
+    path: '/statistics',
+    component: './personnel/archives/statistics',
+    access: 'statistics',
+  },
   {
     path: '/welcome',
     name: 'welcome',

+ 1 - 0
src/access.ts

@@ -8,6 +8,7 @@ const routers = {
   mechanism: false,
   category: false,
   project: false,
+  archives: false,
 }
 
 export default function access(initialState: { currentUser?: API.CurrentUser | undefined }) {

+ 2 - 1
src/app.tsx

@@ -123,7 +123,8 @@ const handleMenuList = (menuList)=>{
 // 设置导航图标
 const setMenuIcon = (value)=>{
   switch (value.url) {
-    case 'admin' : value.icon = <Icon type="control" theme="filled" />;break;
+    case 'admin' : value.icon = <Icon type="control" />;break;
+    case 'personnel' : value.icon = <Icon type="team" />;break;
   }
 }
 

+ 325 - 0
src/pages/personnel/archives/statistics/components/newEmployees.jsx

@@ -0,0 +1,325 @@
+import React,{Component} from 'react';
+import ProForm, {
+  ModalForm,
+  ProFormText,
+  ProFormDatePicker,
+  ProFormRadio,
+  ProFormDigit, ProFormSelect
+} from "@ant-design/pro-form";
+import {Cascader, Form, message} from "antd";
+import {getAddressSelect,getNativePlace} from "@/utils/tools";
+import {addEmployees} from '../services/API';
+import {addressList,addressList1} from "@/utils/dataDic";
+
+class NewEmployees extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      addressSelect:[],
+      nativePlaceSelect:[],
+    }
+  }
+
+  addEmployees= async (value)=>{
+    message.loading({content:'保存中...',key:'addEmployees'});
+    // 户籍地址
+    value.residenceProvince = value.address[0] || null;
+    value.residenceCity = value.address[1] || null;
+    value.residenceArea = value.address[2] || null;
+    // 现住地址
+    value.nowProvince = value.userNowAddress[0] || null;
+    value.nowCity = value.userNowAddress[1] || null;
+    value.nowArea = value.userNowAddress[2] || null;
+    // 籍贯
+    value.nativePlaceProvince = value.nativePlace[0] || null;
+    value.nativePlaceCity = value.nativePlace[1] || null;
+    // 性别
+    value.sex = value.sex === '男' ? 0 : value.sex === '女' ? 1 : null;
+    // 婚否
+    value.marriage = value.marriage === '未婚' ? 0 : value.marriage === '已婚' ? 1 : value.marriage === '离异' ? 2 : null
+    const msg = await addEmployees(value);
+    if(msg.error.length === 0){
+      message.success({content:'保存成功',key:'addEmployees',duration:2.5});
+      this.props.formRef.current.reload();
+      this.props.onCancel();
+    }else{
+      message.error({content:msg.error[0].message,key:'addEmployees',duration:2.5})
+    }
+  }
+
+  setAddressList = async () => {
+    let arr = [...addressList];
+    let arr1 = [...addressList];
+    let addressSelect = await getAddressSelect(arr);
+    addressSelect.unshift({
+      label: '全国',
+      value: 0,
+    })
+    let nativePlaceSelect = await getNativePlace(arr1);
+    this.setState({
+      addressSelect,
+      nativePlaceSelect
+    })
+  }
+
+  componentDidMount() {
+    this.setAddressList();
+  }
+
+  formRef = React.createRef();
+
+  render() {
+
+    return (
+      <ModalForm
+        formRef={this.formRef}
+        visible={this.props.visible}
+        preserve={false}
+        title='新增人事档案'
+        modalProps={{
+          maskClosable:true,
+          onCancel: (e) => {e.stopPropagation();this.props.onCancel();},
+        }}
+        onFinish={this.addEmployees}
+      >
+        <ProForm.Group>
+          <ProFormText
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请输入员工编号'
+              }
+            ]}
+            placeholder="请输入员工编号"
+            name="employeeId"
+            label="员工编号"/>
+          <ProFormText
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请输入门禁编号'
+              }
+            ]}
+            placeholder="请输入门禁编号"
+            name="doorId"
+            label="门禁编号"/>
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormText
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请输入姓名'
+              }
+            ]}
+            placeholder="请输入姓名"
+            name="name"
+            label="姓名"/>
+          <ProFormDatePicker
+            width="m"
+            name="birthdays"
+            label="出生日期"
+            placeholder="请选择出生日期"
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormRadio.Group
+            label="性别"
+            width="m"
+            name="sex"
+            options={['男','女']}
+            rules={[
+              {
+                required:true,
+                message:'请输入姓名'
+              }
+            ]}
+          />
+          <ProFormText
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请输入民族'
+              }
+            ]}
+            placeholder="请输入民族"
+            name="nation"
+            label="民族"/>
+        </ProForm.Group>
+        <ProForm.Group>
+          <Form.Item
+            label="户籍地址:"
+            name='address'
+            rules={[
+              {
+                required:true,
+                message:'请选择户籍地址'
+              }
+            ]}
+          >
+            <Cascader
+              changeOnSelect
+              style={{
+                width: '329px',
+              }}
+              options={this.state.addressSelect}
+              placeholder='请选择户籍地址'/>
+          </Form.Item>
+          <ProFormText
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请输入户籍街道地址'
+              }
+            ]}
+            placeholder="请输入户籍街道地址"
+            name="residenceAddress"
+            label="户籍街道地址"/>
+        </ProForm.Group>
+        <ProForm.Group>
+          <Form.Item
+            label="现住地址:"
+            name='userNowAddress'
+            rules={[
+              {
+                required:true,
+                message:'请选择现住地址'
+              }
+            ]}
+          >
+            <Cascader
+              changeOnSelect
+              style={{
+                width: '329px',
+              }}
+              options={this.state.addressSelect}
+              placeholder='请选择现住地址'/>
+          </Form.Item>
+          <ProFormText
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请输入现住街道地址'
+              }
+            ]}
+            placeholder="请输入现住街道地址"
+            name="nowAddress"
+            label="现住街道地址"/>
+        </ProForm.Group>
+        <ProForm.Group>
+          <Form.Item
+            label="籍贯:"
+            name='nativePlace'
+            rules={[
+              {
+                required:true,
+                message:'请选择籍贯'
+              }
+            ]}
+          >
+            <Cascader
+              changeOnSelect
+              style={{
+                width: '329px',
+              }}
+              options={this.state.nativePlaceSelect}
+              placeholder='请选择籍贯'/>
+          </Form.Item>
+          <ProFormText
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请输入身份证'
+              }
+            ]}
+            placeholder="请输入身份证"
+            name="idCard"
+            label="身份证"/>
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormText
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请输入身份证领证机关'
+              }
+            ]}
+            placeholder="请输入身份证领证机关"
+            name="certificationAuthority"
+            label="身份证领证机关"/>
+          <ProFormRadio.Group
+            label="婚姻状态"
+            name="marriage"
+            options={['未婚','已婚','离异']}
+            rules={[
+              {
+                required:true,
+                message:'请输入姓名'
+              }
+            ]}
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormDigit
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请输入儿子数量'
+              }
+            ]}
+            placeholder="请输入儿子数量"
+            name="son"
+            label="儿子数量"/>
+          <ProFormDigit
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请输入女儿数量'
+              }
+            ]}
+            placeholder="请输入女儿数量"
+            name="girl"
+            label="女儿数量"/>
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormSelect
+            width="m"
+            name="politicalOutlook"
+            label="政治面貌"
+            placeholder="请选择政治面貌"
+            options={[
+              {
+                value: 0,
+                label: '群众',
+              },
+              {
+                value: 1,
+                label: '中共预备党员',
+              },
+              {
+                value: 2,
+                label: '中共党员',
+              },
+              {
+                value: 3,
+                label: '致公党员',
+              },
+            ]}
+          />
+        </ProForm.Group>
+      </ModalForm>
+    )
+  }
+}
+
+export default NewEmployees;

+ 309 - 0
src/pages/personnel/archives/statistics/index.jsx

@@ -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;

+ 9 - 0
src/pages/personnel/archives/statistics/services/API.ts

@@ -0,0 +1,9 @@
+import {request} from "@@/plugin-request/request";
+
+// 新增人事档案
+export async function addEmployees(data: object){
+  return request('/api/admin/personnel/add',{
+    method:'post',
+    data
+  })
+}

File diff suppressed because it is too large
+ 13373 - 3
src/utils/dataDic.js


+ 19 - 2
src/utils/tools.js

@@ -212,8 +212,8 @@ const citySelect = () => {
 }
 
 // 地区选择 省市区
-const getAddressSelect = (arr = addressList) => {
-  arr.map((v) =>{
+const getAddressSelect = async (arr) => {
+  await arr.map((v) =>{
     v.label = v.name;
     v.value = v.id;
     if(v.cityList){
@@ -228,6 +228,22 @@ const getAddressSelect = (arr = addressList) => {
   return arr.filter(v=>v.id)
 }
 
+// 籍贯选择 省市
+const getNativePlace = async (arr) => {
+  await arr.map((v) =>{
+    v.label = v.name;
+    v.value = v.id;
+    if(v.cityList){
+      v.children = v.cityList;
+      getNativePlace(v.children);
+    }
+    if(v.areaList && v.areaList.length > 0){
+      v.areaList = [];
+    }
+  })
+  return arr.filter(v=>v.id)
+}
+
 // 省份转换
 const getprovince = (e) => {
   let nub = parseInt(e);
@@ -278,4 +294,5 @@ export {
   getGameState,
   getprovince,
   getAddressSelect,
+  getNativePlace
 };