管理端打手列表增加邀请人展示
This commit is contained in:
@@ -1216,6 +1216,19 @@ function WorkersPanel() {
|
||||
),
|
||||
},
|
||||
{ title: '等级', width: 140, render: (_, row) => row.level?.name || '-' },
|
||||
{
|
||||
title: '邀请人',
|
||||
width: 160,
|
||||
render: (_, row) =>
|
||||
row.inviter ? (
|
||||
<div className="cell-stack">
|
||||
<Typography.Text>{row.inviter.displayName || row.inviter.username}</Typography.Text>
|
||||
<Typography.Text type="secondary">{row.inviter.username}</Typography.Text>
|
||||
</div>
|
||||
) : (
|
||||
'-'
|
||||
),
|
||||
},
|
||||
{
|
||||
title: '余额',
|
||||
width: 120,
|
||||
|
||||
Reference in New Issue
Block a user