From e32362f425a777d3a92d35454294766c74b1a25a Mon Sep 17 00:00:00 2001 From: yml Date: Fri, 5 Jun 2026 19:49:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=87=A0=E4=B8=AA=E5=AE=A2?= =?UTF-8?q?=E6=9C=8D=E4=B8=8D=E6=98=BE=E7=A4=BA=E6=98=B5=E7=A7=B0=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/features/chats/views/ChatView.vue | 2 +- frontend/src/features/chats/views/MobileChatView.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/features/chats/views/ChatView.vue b/frontend/src/features/chats/views/ChatView.vue index 8fb0e09..f5e90ab 100644 --- a/frontend/src/features/chats/views/ChatView.vue +++ b/frontend/src/features/chats/views/ChatView.vue @@ -35,7 +35,7 @@ const canSend = computed(() => content.value.trim() !== '' || attachments.value. const memberText = computed(() => { const participants = conversation.value?.participants || [] if (participants.length === 0) return conversation.value?.type === 'general_support' ? '平台客服' : '订单群聊' - return participants.map(item => roleLabel(item.role)).join(' · ') + return participants.map(item => `${roleLabel(item.role)}:${item.display_name}`).join(' / ') }) function handleSSEEvent(event: ChatEvent) { diff --git a/frontend/src/features/chats/views/MobileChatView.vue b/frontend/src/features/chats/views/MobileChatView.vue index 737b6d0..dcf8a22 100644 --- a/frontend/src/features/chats/views/MobileChatView.vue +++ b/frontend/src/features/chats/views/MobileChatView.vue @@ -34,7 +34,7 @@ const canSend = computed(() => content.value.trim() !== '' || attachments.value. const memberText = computed(() => { const participants = conversation.value?.participants || [] if (participants.length === 0) return conversation.value?.type === 'general_support' ? '平台客服' : '订单群聊' - return participants.map(item => roleLabel(item.role)).join(' · ') + return participants.map(item => `${roleLabel(item.role)}:${item.display_name}`).join(' / ') }) function handleSSEEvent(event: ChatEvent) {