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

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

Loading…
Cancel
Save