Selaa lähdekoodia

修复人事创建档案后无账户信息

HW 4 vuotta sitten
vanhempi
commit
9301b7fa0d

+ 5 - 0
js/component/manageCenter/statistics/personnel/personnelAll.jsx

@@ -3744,6 +3744,11 @@ const PersonnelAll = React.createClass({
             visible={this.state.peoVisible}
             ModalData={this.state.ModalData}
             isAddPeo={this.state.isAddPeo}
+            setNowAid={(aid)=>{
+              this.setState({
+                aid
+              })
+            }}
             onCancel={() => {
               this.loadData();
               this.addPeoCancel();

+ 7 - 2
js/component/manageCenter/statistics/personnel/userProfile.jsx

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