|
@@ -22,6 +22,7 @@ class UserProfile extends Component{
|
|
|
employeeId:'',
|
|
|
name:'',
|
|
|
establish: props.aid ? true : false,
|
|
|
+ aid:props.aid,
|
|
|
}
|
|
|
this.verifyDoor = this.verifyDoor.bind(this);
|
|
|
this.verifyId = this.verifyId.bind(this);
|
|
@@ -140,6 +141,7 @@ class UserProfile extends Component{
|
|
|
addOk(aid) {
|
|
|
this.setState({
|
|
|
loading: true,
|
|
|
+ aid,
|
|
|
});
|
|
|
$.ajax({
|
|
|
method: "post",
|
|
@@ -176,6 +178,7 @@ class UserProfile extends Component{
|
|
|
message.warning(data.error[0].message);
|
|
|
} else {
|
|
|
message.success("添加成功!");
|
|
|
+ this.props.setNowAid(aid);
|
|
|
this.props.onCancel();
|
|
|
}
|
|
|
}.bind(this),
|
|
@@ -191,6 +194,7 @@ class UserProfile extends Component{
|
|
|
editOk(aid) {
|
|
|
this.setState({
|
|
|
loading: true,
|
|
|
+ aid,
|
|
|
});
|
|
|
$.ajax({
|
|
|
method: "post",
|
|
@@ -228,6 +232,7 @@ class UserProfile extends Component{
|
|
|
message.warning(data.error[0].message);
|
|
|
} else {
|
|
|
message.success("修改成功!");
|
|
|
+ this.props.setNowAid(aid);
|
|
|
this.props.onCancel();
|
|
|
}
|
|
|
}.bind(this),
|
|
@@ -615,9 +620,9 @@ class UserProfile extends Component{
|
|
|
{this.state.establish ? <div>
|
|
|
<div>----------------------------------------------------------------------------------------------------------------------------------------------------------------</div>
|
|
|
<UserProcessing
|
|
|
- userDetaile={this.props.aid}
|
|
|
+ userDetaile={this.state.aid ? true : false}
|
|
|
name={this.state.name}
|
|
|
- aid={this.props.aid}
|
|
|
+ aid={this.state.aid}
|
|
|
inspect={(v)=>{this.inspect(v)}}
|
|
|
onPreservation={(aid)=>{
|
|
|
if(this.props.isAddPeo){
|