From 8dfe797c25f79de2fbae12ac0ef994abebc4b3fd Mon Sep 17 00:00:00 2001 From: yml2213 Date: Sat, 1 Aug 2026 14:52:13 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AE=A1=E7=90=86=E7=AB=AF=E6=89=93=E6=89=8B?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E5=A2=9E=E5=8A=A0=E9=82=80=E8=AF=B7=E4=BA=BA?= =?UTF-8?q?=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/pages/admin/AdminWorkerPlatformPage.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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,