diff --git a/components/accounts/account-table.tsx b/components/accounts/account-table.tsx index 94ee9e5..8eea727 100644 --- a/components/accounts/account-table.tsx +++ b/components/accounts/account-table.tsx @@ -134,8 +134,8 @@ export function AccountTable({ {/* 分页器 - 移到顶部 */} {renderPagination()} - {/* 表格区域 - 直接使用原生table确保sticky正常工作 */} -
+ {/* 表格区域 - 增加高度以显示更多数据 */} +
@@ -170,8 +170,12 @@ export function AccountTable({ ) : ( accounts.map((account) => ( - - onSelectOne(account.id, !selectedIds.includes(account.id))} + > + -
+
e.stopPropagation()}> onSelectOne(account.id, checked as boolean)} @@ -184,9 +188,15 @@ export function AccountTable({ {getStatusBadge(account.status)} {account.notes || '-'} - {new Date(account.createdAt).toLocaleDateString('zh-CN')} + {new Date(account.createdAt).toLocaleString('zh-CN', { + year: 'numeric', + month: '2-digit', + day: '2-digit', + hour: '2-digit', + minute: '2-digit' + })} + e.stopPropagation()}>
{onView && (