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