Browse Source

紧急联系人

HW 4 years ago
parent
commit
cfe7d97f2f

+ 129 - 0
src/pages/personnel/archives/statistics/components/dataClassify/contact.jsx

@@ -0,0 +1,129 @@
+import React,{Component} from "react";
+import ProForm, {ProFormText} from "@ant-design/pro-form";
+
+class Contact extends Component{
+  constructor(props) {
+    super(props);
+  }
+
+  formRef = React.createRef();
+
+  render() {
+    return (
+      <>
+        <div
+          style={{
+            fontSize: '20px',
+            backgroundColor: 'skyblue',
+            textAlign: "center",
+            marginBottom: 10,
+            letterSpacing: '7px',
+            fontWeight: 'bold',
+            lineHeight:'20px',
+            paddingBottom: '14px',
+            paddingTop: '10px',
+          }}
+        >
+          任职信息
+        </div>
+        <ProForm
+          formRef={this.formRef}
+          onFinish={this.updatePersonnel}
+          submitter={!this.props.readonly}
+          layout={this.props.readonly?'horizontal':'vertical'}
+        >
+          <ProForm.Group>
+            <ProFormText
+              readonly={this.props.readonly}
+              width="m"
+              rules={[
+                {
+                  pattern: /^1\d{10}$/,
+                  message: '不合法的手机号格式!',
+                }
+              ]}
+              placeholder="请输入手机号"
+              name="mobile"
+              label="手机号码"
+            />
+            <ProFormText
+              readonly={this.props.readonly}
+              width="m"
+              placeholder="请输入手机号"
+              name="fixedTel"
+              label="办公室电话"
+            />
+          </ProForm.Group>
+          <ProForm.Group>
+            <ProFormText
+              readonly={this.props.readonly}
+              width="m"
+              placeholder="请输入名字"
+              name="name1"
+              label="紧急联系人1"
+            />
+            <ProFormText
+              readonly={this.props.readonly}
+              width="m"
+              rules={[
+                {
+                  pattern: /^1\d{10}$/,
+                  message: '不合法的手机号格式!',
+                }
+              ]}
+              placeholder="请输入电话"
+              name="mobile1"
+              label="紧急联系人电话"
+            />
+          </ProForm.Group>
+          <ProForm.Group>
+            <ProFormText
+              readonly={this.props.readonly}
+              width="m"
+              placeholder="请输入名字"
+              name="name2"
+              label="紧急联系人2"
+            />
+            <ProFormText
+              readonly={this.props.readonly}
+              width="m"
+              rules={[
+                {
+                  pattern: /^1\d{10}$/,
+                  message: '不合法的手机号格式!',
+                }
+              ]}
+              placeholder="请输入电话"
+              name="mobile2"
+              label="紧急联系人2电话"
+            />
+          </ProForm.Group>
+          <ProForm.Group>
+            <ProFormText
+              readonly={this.props.readonly}
+              width="m"
+              placeholder="请输入名字"
+              name="name3"
+              label="紧急联系人3"
+            />
+            <ProFormText
+              readonly={this.props.readonly}
+              width="m"
+              rules={[
+                {
+                  pattern: /^1\d{10}$/,
+                  message: '不合法的手机号格式!',
+                }
+              ]}
+              placeholder="请输入电话"
+              name="mobile3"
+              label="紧急联系人3电话"
+            />
+          </ProForm.Group>
+        </ProForm>
+      </>
+    )
+  }
+}
+
+export default Contact;

+ 58 - 21
src/pages/personnel/archives/statistics/components/dataClassify/inauguration.jsx

@@ -19,27 +19,33 @@ import ProForm, {
 import moment from "moment";
 import {getSelectSuperId} from "@/services/user";
 import {message} from "antd";
-import {selectLvlList} from '../../services/API';
+import {selectLvlList,updatePersonnel} from '../../services/API';
 
 class Inauguration extends Component{
   constructor(props) {
     super(props);
     this.state={
+      jobs: '',
     }
   }
 
   componentDidMount() {
+    console.log(this.props.userInfor)
     this.formRef.current.setFieldsValue({
       status: this.props.userInfor.status,
       jobNature: this.props.userInfor.jobNature,
       system: this.props.userInfor.system,
       workingYear: this.props.userInfor.workingYear,
-      entryTime: this.props.userInfor.entryTime ? moment(this.props.userInfor.entryTime).format('YYYY-MM-DD') : undefined,
-      promotionTimes: this.props.userInfor.promotionTimes ? moment(this.props.userInfor.promotionTimes).format('YYYY-MM-DD') : undefined,
+      entryTimes: this.props.userInfor.entryTimes,
+      promotionTimes: this.props.userInfor.promotionTimes,
       lvl: this.props.userInfor.lvl,
       jobs: this.props.userInfor.jobs,
       allowance: this.props.userInfor.allowance,
-      starName: this.props.userInfor.starName,
+      star: this.props.userInfor.star,
+      company: this.props.userInfor.company,
+    })
+    this.setState({
+      jobs: this.props.userInfor.jobs,
     })
   }
 
@@ -65,9 +71,7 @@ class Inauguration extends Component{
     const msg = await selectLvlList();
     if(msg.error.length === 0){
       let theArr = [];
-      //request
-      console.log(this.formRef.current.getFieldsValue(['jobs']))
-      msg.data.filter(v=>v.jobs === this.formRef.current.getFieldsValue(['jobs']).jobs).forEach((item) => {
+      msg.data.filter(v=>v.jobs === this.state.jobs).forEach((item) => {
         theArr.push({
           label: item.lvlName,
           value: item.lvl
@@ -80,6 +84,22 @@ class Inauguration extends Component{
     return [];
   }
 
+  updatePersonnel= async (value)=>{
+    console.log(value);
+    try{
+      value.id = this.props.userInfor.id;
+      const msg = await updatePersonnel(value);
+      if(msg.error.length === 0){
+        message.success({content:'保存成功',key:'updatePersonnel',duration:2.5});
+      }else{
+        message.warning({content:msg.error[0].message,key:'updatePersonnel',duration:2.5})
+      }
+    }catch (error){
+      console.log(error)
+      return true;
+    }
+  }
+
   formRef = React.createRef();
 
   render() {
@@ -102,12 +122,25 @@ class Inauguration extends Component{
         </div>
         <ProForm
           formRef={this.formRef}
-          onFinish={this.addEmployees}
+          onFinish={this.updatePersonnel}
+          submitter={!this.props.readonly}
+          layout={this.props.readonly?'horizontal':'vertical'}
+          onValuesChange={(v)=>{
+            if(v.hasOwnProperty('jobs')){
+              this.setState({
+                jobs: ''
+              },()=>{
+                this.setState({
+                  jobs: v.jobs
+                })
+              })
+            }
+          }}
         >
           <ProForm.Group>
             <ProFormSelect
               readonly={this.props.readonly}
-              width="s"
+              width="xs"
               name="status"
               label="员工状态"
               placeholder="请选择员工状态"
@@ -136,7 +169,7 @@ class Inauguration extends Component{
             />
             <ProFormSelect
               readonly={this.props.readonly}
-              width="s"
+              width="xs"
               name="system"
               label="所属系统"
               placeholder="请选择所属系统"
@@ -157,7 +190,7 @@ class Inauguration extends Component{
             />
             <ProFormSelect
               readonly={this.props.readonly}
-              width="s"
+              width="xs"
               name="jobNature"
               label="工作性质"
               placeholder="请选择工作性质"
@@ -177,13 +210,15 @@ class Inauguration extends Component{
               ]}
             />
             <ProFormDatePicker
-              width="s"
+              readonly={this.props.readonly}
+              width="xs"
               label="入职时间"
-              name="entryTime"
+              name="entryTimes"
               placeholder="请选择入职时间"
             />
             <ProFormDatePicker
-              width="s"
+              readonly={this.props.readonly}
+              width="xs"
               label="转正时间"
               name="promotionTimes"
               placeholder="请选择转正时间"
@@ -191,14 +226,15 @@ class Inauguration extends Component{
           </ProForm.Group>
           <ProForm.Group>
             <ProFormSelect
-              width="s"
+              readonly={this.props.readonly}
+              width="xs"
               label='所属公司'
-              name='depName'
+              name='company'
               placeholder="请选择所属公司"
               request={this.departmentList}/>
             <ProFormSelect
               readonly={this.props.readonly}
-              width="s"
+              width="xs"
               name="lvl"
               label="级别"
               placeholder="请选择级别"
@@ -239,7 +275,7 @@ class Inauguration extends Component{
             />
             <ProFormSelect
               readonly={this.props.readonly}
-              width="s"
+              width="xs"
               name="jobs"
               label="职位"
               placeholder="请选择职位"
@@ -286,10 +322,11 @@ class Inauguration extends Component{
                 },
               ]}
             />
-            {this.formRef.current&&this.formRef.current.getFieldsValue(['jobs']).jobs ? <ProFormSelect
-              width="s"
+            {this.state.jobs ? <ProFormSelect
+              readonly={this.props.readonly}
+              width="xs"
               label='星级'
-              name='starName'
+              name='star'
               placeholder="请选择星级"
               request={this.getSelectLvlList}/> : null}
             <ProFormDigit

+ 3 - 1
src/pages/personnel/archives/statistics/components/dataClassify/index.jsx

@@ -1,6 +1,7 @@
 import React,{Component} from "react";
 import { Tabs } from 'antd';
 import Inauguration from './inauguration';
+import Contact from './contact';
 
 const { TabPane } = Tabs;
 
@@ -30,13 +31,14 @@ class DataClassify extends Component{
           this.props.readonly ?
             <div>
               <Inauguration {...this.props}/>
+              <Contact {...this.props}/>
             </div>:
             <Tabs defaultActiveKey="1" activeKey={this.state.activeKey} onChange={this.callback} tabBarGutter={85}>
               <TabPane tab="任职信息" key="1">
                 <Inauguration {...this.props}/>
               </TabPane>
               <TabPane tab="联系信息" key="2">
-                Content of Tab Pane 2
+                <Contact {...this.props}/>
               </TabPane>
               <TabPane tab="入职资料" key="3">
                 Content of Tab Pane 3

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

@@ -50,6 +50,14 @@ export async function selectLvlList(){
   return request('/api/admin/personnel/selectLvlList')
 }
 
+// 修改任职信息
+export async function updatePersonnel(data: object){
+  return request('/api/admin/personnel/update',{
+    method:'post',
+    data
+  })
+}
+