dev_sync_trustie
杨树林 5 years ago
parent 07a8062ac9
commit c16c96e348

@ -181,7 +181,7 @@ class PersonModal extends Component {
}
try {
const {team_idstudents, student_ids} = this.statel
const {team_idstudents, student_ids} = this.state;
this.Getstudentsdata(e.target.value, team_idstudents, student_ids);
} catch (e) {
@ -488,24 +488,28 @@ class PersonModal extends Component {
<p className=" cpersondiv1Items"
style={{
textAlign: "center",
width: "90px"
}}
>李小猫{index}</p>
>{item.name === undefined || item.name === null || item.name === "" ? "--" : item.name}</p>
<p className=" cpersondiv1Items"
style={{
textAlign: "center",
width: "90px"
}}
>职称副教授</p>
>{item.identity === undefined || item.identity === null || item.identity === "" ? "--" : item.identity}</p>
<p className=" cpersondiv1Items"
style={{
textAlign: "center",
width: "110px"
}}
>国防科技大学</p>
>{item.school_name === undefined || item.school_name === null || item.school_name === "" ? "--" : item.school_name}</p>
<p className=" cpersondiv1Items"
style={{
textAlign: "center",
color: "#FF6800",
width: "87px"
}}
>已加入其他战队</p>
>{item.enrollable === false ? "" : "已加入其他战队"}</p>
</a>
);
}

Loading…
Cancel
Save