From 5373e3735c4b331f39befea1fa9e7777fb9b687b Mon Sep 17 00:00:00 2001 From: linkeyu Date: Mon, 27 Jul 2026 11:36:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=AF=94=E4=BB=B7=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E7=94=A8=E6=88=B7=E4=BF=A1=E6=81=AF=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=A2=9C=E8=89=B2=20(#83)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 改动说明 - 比价记录列表中的手机号和用户名改为蓝色文本 - 保留原有整行点击行为,继续打开比价记录侧边栏 - 不新增用户详情页跳转 ## 验证 - TypeScript 类型检查通过 - 本地确认用户信息为蓝色且不包含详情页链接 --------- Co-authored-by: linkeyu <798648091@qq.com> Reviewed-on: https://gitea.shaguabijia.com/WonderableAI/shaguabijia-admin-web/pulls/83 Co-authored-by: linkeyu Co-committed-by: linkeyu --- src/app/(main)/comparison-records/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/(main)/comparison-records/page.tsx b/src/app/(main)/comparison-records/page.tsx index ae9cf14..be8cd7f 100644 --- a/src/app/(main)/comparison-records/page.tsx +++ b/src/app/(main)/comparison-records/page.tsx @@ -237,9 +237,9 @@ export default function ComparisonRecordsPage() { key: 'user', width: 140, render: (_, r) => ( -
+
{r.phone || `#${r.user_id}`}
- {r.nickname &&
{r.nickname}
} + {r.nickname &&
{r.nickname}
}
), },