diff --git a/apps/frontend/src/pages/admin/AdminWorkerPlatformPage.tsx b/apps/frontend/src/pages/admin/AdminWorkerPlatformPage.tsx index 5f6ea560..3e7320cd 100644 --- a/apps/frontend/src/pages/admin/AdminWorkerPlatformPage.tsx +++ b/apps/frontend/src/pages/admin/AdminWorkerPlatformPage.tsx @@ -1216,6 +1216,19 @@ function WorkersPanel() { ), }, { title: '等级', width: 140, render: (_, row) => row.level?.name || '-' }, + { + title: '邀请人', + width: 160, + render: (_, row) => + row.inviter ? ( +
+ {row.inviter.displayName || row.inviter.username} + {row.inviter.username} +
+ ) : ( + '-' + ), + }, { title: '余额', width: 120,