优化比价记录用户信息显示颜色 (#83)
## 改动说明 - 比价记录列表中的手机号和用户名改为蓝色文本 - 保留原有整行点击行为,继续打开比价记录侧边栏 - 不新增用户详情页跳转 ## 验证 - TypeScript 类型检查通过 - 本地确认用户信息为蓝色且不包含详情页链接 --------- Co-authored-by: linkeyu <798648091@qq.com> Reviewed-on: #83 Co-authored-by: linkeyu <linkeyu@wonderable.ai> Co-committed-by: linkeyu <linkeyu@wonderable.ai>
This commit was merged in pull request #83.
This commit is contained in:
@@ -237,9 +237,9 @@ export default function ComparisonRecordsPage() {
|
||||
key: 'user',
|
||||
width: 140,
|
||||
render: (_, r) => (
|
||||
<div>
|
||||
<div style={{ color: '#1677ff' }}>
|
||||
<div>{r.phone || `#${r.user_id}`}</div>
|
||||
{r.nickname && <div style={{ color: '#999', fontSize: 12 }}>{r.nickname}</div>}
|
||||
{r.nickname && <div style={{ fontSize: 12 }}>{r.nickname}</div>}
|
||||
</div>
|
||||
),
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user