报名列表成员信息展示错误

This commit is contained in:
谢思 2022-04-07 11:03:52 +08:00
parent b394081452
commit 77c610c65e
2 changed files with 6 additions and 6 deletions

View File

@ -158,9 +158,9 @@ function Introduce({history:{location:{pathname}},qzDetail }) {
return <div className="row">
<div className="index">{index+1}</div>
<div>{item.real_name}</div>
<div>{item.org_name}</div>
<div>{item.org_job}</div>
<div>{item.org_rank}</div>
<div>{item.org_name}</div>
</div>
})}
</div>
@ -169,15 +169,15 @@ function Introduce({history:{location:{pathname}},qzDetail }) {
const expandRowWai = (record) =>{
return <div className="expandRowManage">
<div className="row">
<div>序号</div>
<div className="index">序号</div>
<div>姓名</div>
<div className="job">单位</div>
<div>单位</div>
</div>
{record.members && record.members.map((item, index)=>{
return <div className="row">
<div>{index+1}</div>
<div className="index">{index+1}</div>
<div>{item.real_name}</div>
<div className="job">{item.org_name}</div>
<div>{item.org_name}</div>
</div>
})}
</div>

View File

@ -26,7 +26,7 @@
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&.index{width: 6%;}
&.index{width: 10%;}
}
.expandRowManage .row{
border-bottom: 1px solid #ececec;