From d34c5e60b74b07e2c6868822b5254d0bd708a6e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=BF=97=E5=86=9B?= <543024265@qq.com> Date: Tue, 29 Jul 2025 09:52:54 +0800 Subject: [PATCH] =?UTF-8?q?refactor(agent):=20=E9=87=8D=E6=9E=84=E6=99=BA?= =?UTF-8?q?=E8=83=BD=E4=BD=93=E9=A1=B5=E9=9D=A2=E5=B8=83=E5=B1=80=E5=92=8C?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -调整了智能体卡片的布局结构,优化了标题和描述的显示方式 - 改进了历史对话的展示样式,增加了滚动指示器 - 统一了标签和图标的样式,提升了视觉一致性 - 优化了搜索框和卡片列表的样式,提高了用户体验 --- src/views/agent/chat/index.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/views/agent/chat/index.vue b/src/views/agent/chat/index.vue index b95cd4a..707fab9 100644 --- a/src/views/agent/chat/index.vue +++ b/src/views/agent/chat/index.vue @@ -20,7 +20,9 @@ :sm="isCollapsed ? 24 : 12" :md="isCollapsed ? 24 : 16" :lg="isCollapsed ? 24 : 18" - :xl="isCollapsed ? 24 : 16" class="chat-content-col"> + :xl="isCollapsed ? 24 : 16" + :xxl="isCollapsed ? 24 : 16" + class="chat-content-col">
@@ -29,7 +31,7 @@
-
+
@@ -142,7 +144,6 @@ const cozeWebSdkConfig = (botId, name, auth, userInfo) => { }, header: { isShow: true, - isNeedClose: true }, conversations: { isNeed: true, @@ -154,7 +155,7 @@ const cozeWebSdkConfig = (botId, name, auth, userInfo) => { userInfo: userInfo, header: { isShow: true, - isNeedClose: false, + isNeedClose: true, }, }; return config;