diff --git a/src/app/(main)/comparison-records/page.tsx b/src/app/(main)/comparison-records/page.tsx index 6b17212..be8cd7f 100644 --- a/src/app/(main)/comparison-records/page.tsx +++ b/src/app/(main)/comparison-records/page.tsx @@ -8,7 +8,6 @@ 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 { @@ -238,14 +237,10 @@ 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}
} - +
), }, { title: '状态', dataIndex: 'status', width: 72, render: (s: string) => {STATUS_LABEL[s] || s} },