From d3f56b899e6d3f0004f037b22b4e9c4ab2a3b803 Mon Sep 17 00:00:00 2001 From: ZF sun <34314687@qq.com> Date: Mon, 8 Dec 2025 17:15:50 +0800 Subject: [PATCH] =?UTF-8?q?chore(addon/aikefu):=20=E4=BC=9A=E8=AF=9D?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E4=B8=AD=EF=BC=8C=E6=9F=A5=E7=9C=8B=E6=B6=88?= =?UTF-8?q?=E6=81=AF=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../aikefu/shop/view/kefu/conversation.html | 113 +++++++++++++++++- 1 file changed, 110 insertions(+), 3 deletions(-) diff --git a/src/addon/aikefu/shop/view/kefu/conversation.html b/src/addon/aikefu/shop/view/kefu/conversation.html index 656767db2..7a4453a02 100644 --- a/src/addon/aikefu/shop/view/kefu/conversation.html +++ b/src/addon/aikefu/shop/view/kefu/conversation.html @@ -19,6 +19,50 @@ .status-inactive { color: #faad14; } + + /* 简单消息列表样式 */ + .simple-message-list { + max-height: 500px; + overflow-y: auto; + padding: 15px; + } + .message-item { + margin-bottom: 15px; + padding: 10px; + border-radius: 4px; + } + .message-item.user { + background-color: #e6f7ff; + border-left: 3px solid #1890ff; + } + .message-item.assistant { + background-color: #f6ffed; + border-left: 3px solid #52c41a; + } + .message-header { + display: flex; + justify-content: space-between; + margin-bottom: 5px; + font-size: 12px; + } + .message-role { + font-weight: bold; + color: #333; + } + .message-time { + color: #999; + } + .message-content { + font-size: 14px; + line-height: 1.4; + color: #666; + word-break: break-word; + } + .empty-message { + text-align: center; + color: #999; + padding: 30px; + }