From 9ed85c48302f55ac98cc85711d646ef942033cca Mon Sep 17 00:00:00 2001 From: hajimi Date: Mon, 3 Aug 2026 21:05:40 +0800 Subject: [PATCH] style: distinguish reply nickname color --- uniapp/src/pages/my_comments/my_comments.vue | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/uniapp/src/pages/my_comments/my_comments.vue b/uniapp/src/pages/my_comments/my_comments.vue index 62cf6e8c..5359a5fe 100644 --- a/uniapp/src/pages/my_comments/my_comments.vue +++ b/uniapp/src/pages/my_comments/my_comments.vue @@ -20,7 +20,9 @@ - 回复 {{ formatNickname(item.reply_to.user?.nickname || '该用户') }}: + 回复 + {{ formatNickname(item.reply_to.user?.nickname || '该用户') }} + {{ item.reply_to.content }} @@ -198,10 +200,15 @@ const formatTime = (value: string | number) => { line-height: 36rpx; } -.comment-card__reply-user { +.comment-card__reply-prefix { color: #4d78d9; } +.comment-card__reply-name { + color: #344055; + font-weight: 500; +} + .comment-card__content { display: block; color: #1f2937;