diff --git a/apps/frontend/src/pages/admin/AdminDashboardPage.tsx b/apps/frontend/src/pages/admin/AdminDashboardPage.tsx index cd54ecc7..27c8f589 100644 --- a/apps/frontend/src/pages/admin/AdminDashboardPage.tsx +++ b/apps/frontend/src/pages/admin/AdminDashboardPage.tsx @@ -85,17 +85,18 @@ export default function AdminDashboardPage() { { title: '账号', dataIndex: 'username', - minWidth: 140, - render: (value, row) => ( -
- {value || '-'} - {row.role ? : null} -
- ), + minWidth: 120, + render: (value) => {value || '-'}, + }, + { + title: '角色', + dataIndex: 'role', + width: 110, + render: (value) => , }, { title: '结果', - width: 100, + width: 90, render: (_, row) => row.success ? ( 成功