forked from Gitlink/forgeplus-react
parent
32c64d2b91
commit
33df45788e
|
|
@ -78,18 +78,18 @@ function scoreDetail(props){
|
|||
{list.map((item, index) => (
|
||||
<tr key={item.id}>
|
||||
<td className="time">{item.createTime}</td>
|
||||
<td className="desc">{item.event?.subject}<br/><p>{item.subjectDesc}</p></td>
|
||||
<td className="desc">{item.subject}<br/><p>{item.subjectDesc}</p></td>
|
||||
<td className={`score ${item.pointsShow?.className}`} style={{textAlign: 'center'}}>{item.pointsShow?.pointsTxt}</td>
|
||||
<td style={{textAlign: 'center'}}>
|
||||
<span className={`tag ${item.pointsShow?.statusClass}`}>{item.pointsShow?.status}</span>
|
||||
</td>
|
||||
<td className="remark">
|
||||
{item.event?.reason}
|
||||
{item.reason}
|
||||
{
|
||||
item.event?.replyContent &&
|
||||
item.replyContent &&
|
||||
<div className="reply">
|
||||
<i className='iconfont icon-xiaoxi2 font-12 mr8'></i>
|
||||
管理员:{item.event?.replyContent}
|
||||
管理员:{item.replyContent}
|
||||
</div>
|
||||
}
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue