后端接口调整

后端接口调整
This commit is contained in:
amypeng 2026-06-08 09:56:30 +08:00
parent 32c64d2b91
commit 33df45788e
1 changed files with 4 additions and 4 deletions

View File

@ -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>