|
|
|
@ -877,11 +877,21 @@ class PersonModal extends Component {
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
height: "40px",
|
|
|
|
|
}}>
|
|
|
|
|
<p className=" reglistviewdivss4p"
|
|
|
|
|
<style>
|
|
|
|
|
{
|
|
|
|
|
`
|
|
|
|
|
a:hover
|
|
|
|
|
{
|
|
|
|
|
color: #05101A;
|
|
|
|
|
}
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<a title={item.name} className=" reglistviewdivss4p maxnamewidth90"
|
|
|
|
|
style={{
|
|
|
|
|
textAlign: "center",
|
|
|
|
|
}}
|
|
|
|
|
>{item.name === undefined || item.name === null || item.name === "" ? "--" : item.name}</p>
|
|
|
|
|
>{item.name === undefined || item.name === null || item.name === "" ? "--" : item.name}</a>
|
|
|
|
|
{
|
|
|
|
|
index === 0 ?
|
|
|
|
|
<p className=" reglistviewdivss4p"
|
|
|
|
@ -890,32 +900,32 @@ class PersonModal extends Component {
|
|
|
|
|
}}
|
|
|
|
|
>创建者</p>
|
|
|
|
|
:
|
|
|
|
|
<p className=" reglistviewdivss4p"
|
|
|
|
|
<a title={item.type} className=" reglistviewdivss4p maxnamewidth90"
|
|
|
|
|
style={{
|
|
|
|
|
textAlign: "center",
|
|
|
|
|
}}
|
|
|
|
|
>{item.type === undefined || item.type === null || item.type === "" ? "--" : item.type}</p>
|
|
|
|
|
>{item.type === undefined || item.type === null || item.type === "" ? "--" : item.type}</a>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<p className=" reglistviewdivss5p"
|
|
|
|
|
<a title={item.school_name} className=" reglistviewdivss5p maxnamewidth110"
|
|
|
|
|
style={{
|
|
|
|
|
textAlign: "center",
|
|
|
|
|
}}
|
|
|
|
|
>{item.school_name === undefined || item.school_name === null || item.school_name === "" ? "--" : item.school_name}</p>
|
|
|
|
|
<p className=" reglistviewdivss2p"
|
|
|
|
|
>{item.school_name === undefined || item.school_name === null || item.school_name === "" ? "--" : item.school_name}</a>
|
|
|
|
|
<a title={item.identity} className=" reglistviewdivss2p maxnamewidth90"
|
|
|
|
|
style={{
|
|
|
|
|
textAlign: "center",
|
|
|
|
|
}}
|
|
|
|
|
>{item.identity === undefined || item.identity === null || item.identity === "" ? "--" : item.identity}</p>
|
|
|
|
|
>{item.identity === undefined || item.identity === null || item.identity === "" ? "--" : item.identity}</a>
|
|
|
|
|
{
|
|
|
|
|
index === 0 ?
|
|
|
|
|
<p className=" reglistviewdivss33p"
|
|
|
|
|
<p className=" reglistviewdivss333p"
|
|
|
|
|
style={{
|
|
|
|
|
textAlign: "center",
|
|
|
|
|
}}
|
|
|
|
|
></p>
|
|
|
|
|
:
|
|
|
|
|
<p className=" reglistviewdivss33p"
|
|
|
|
|
<p className=" reglistviewdivss333p"
|
|
|
|
|
style={{
|
|
|
|
|
textAlign: "center",
|
|
|
|
|
}}
|
|
|
|
@ -928,7 +938,8 @@ class PersonModal extends Component {
|
|
|
|
|
// console.log(this.props.teamutiple_limited );
|
|
|
|
|
if (teacher_ids) {
|
|
|
|
|
cpersondiv1Items = teacher_ids.map((item, index) =>
|
|
|
|
|
<a
|
|
|
|
|
<div className={"yslanswerList"}>
|
|
|
|
|
<li
|
|
|
|
|
className={this.props.teamutiple_limited === undefined || this.props.teamutiple_limited === null ? "reglistviewdivss2 " : (this.props.teamutiple_limited === true && item.enrollable === false ? "reglistviewdivss2c" : "reglistviewdivss2 ")}
|
|
|
|
|
key={index} style={{
|
|
|
|
|
width: "100%",
|
|
|
|
@ -1026,16 +1037,16 @@ class PersonModal extends Component {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
</li>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const cpersondiv1 = (
|
|
|
|
|
<div className={" backgroundspersondiv cpersondiv1 borders2"}>
|
|
|
|
|
<Spin spinning={false}>
|
|
|
|
|
<div className={cpersondiv1Items.length === 0 ? "demo-infinite-container33" : "demo-infinite-container2"}>
|
|
|
|
|
<div
|
|
|
|
|
className={cpersondiv1Items.length === 0 ? "demo-infinite-container33 yslanswerList" : "demo-infinite-container2 yslanswerList"}>
|
|
|
|
|
{
|
|
|
|
|
cpersondiv1Items.length === 0 ?
|
|
|
|
|
<Empty image={Empty.PRESENTED_IMAGE_SIMPLE}/>
|
|
|
|
@ -1062,7 +1073,10 @@ class PersonModal extends Component {
|
|
|
|
|
var persondiv2Items = [];
|
|
|
|
|
if (member_ids) {
|
|
|
|
|
persondiv2Items = member_ids.map((item, index) =>
|
|
|
|
|
<a
|
|
|
|
|
<div className={"yslanswerList"}>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<li
|
|
|
|
|
className={this.props.mutiple_limited === undefined || this.props.mutiple_limited === null ? "reglistviewdivss2 " : (this.props.mutiple_limited === true && item.enrollable === false ? "reglistviewdivss2c" : "reglistviewdivss2 ")}
|
|
|
|
|
key={index} style={{
|
|
|
|
|
width: "100%",
|
|
|
|
@ -1159,8 +1173,8 @@ class PersonModal extends Component {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
const persondiv2 = (
|
|
|
|
@ -1205,16 +1219,16 @@ class PersonModal extends Component {
|
|
|
|
|
width="620px"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
{
|
|
|
|
|
`
|
|
|
|
|
a:hover
|
|
|
|
|
{
|
|
|
|
|
background-color:#F6F4F4;
|
|
|
|
|
}
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
{/*<style>*/}
|
|
|
|
|
{/* {*/}
|
|
|
|
|
{/* `*/}
|
|
|
|
|
{/* a:hover*/}
|
|
|
|
|
{/* {*/}
|
|
|
|
|
{/* background-color:#F6F4F4;*/}
|
|
|
|
|
{/* }*/}
|
|
|
|
|
{/* `*/}
|
|
|
|
|
{/* }*/}
|
|
|
|
|
{/*</style>*/}
|
|
|
|
|
<div className="permaindiv">
|
|
|
|
|
{/*队名*/}
|
|
|
|
|
<style>{
|
|
|
|
@ -1365,7 +1379,7 @@ class PersonModal extends Component {
|
|
|
|
|
placeholder="请输入想要队员姓名的任意关键字进行搜索"
|
|
|
|
|
onPressEnter={this.startSearch2}
|
|
|
|
|
onFocus={this.inputOnFocus2}
|
|
|
|
|
onBlur={this.inputOnBlur2}
|
|
|
|
|
// onBlur={this.inputOnBlur2}
|
|
|
|
|
onChange={(e) => this.studentsonChange(e)}
|
|
|
|
|
value={this.state.keywordstudents}
|
|
|
|
|
suffix={
|
|
|
|
|