diff --git a/src/app/(main)/comparison-records/page.tsx b/src/app/(main)/comparison-records/page.tsx index ae9cf14..6b17212 100644 --- a/src/app/(main)/comparison-records/page.tsx +++ b/src/app/(main)/comparison-records/page.tsx @@ -8,6 +8,7 @@ import { } from 'antd'; import type { ColumnsType } from 'antd/es/table'; import dayjs, { type Dayjs } from 'dayjs'; +import Link from 'next/link'; import { api, errMsg } from '@/lib/api'; import { formatWallTime, yuan } from '@/lib/format'; import type { @@ -237,10 +238,14 @@ export default function ComparisonRecordsPage() { key: 'user', width: 140, render: (_, r) => ( -
+ event.stopPropagation()} + style={{ display: 'inline-block', color: '#1677ff' }} + >
{r.phone || `#${r.user_id}`}
- {r.nickname &&
{r.nickname}
} -
+ {r.nickname &&
{r.nickname}
} + ), }, { title: '状态', dataIndex: 'status', width: 72, render: (s: string) => {STATUS_LABEL[s] || s} },