refactor(agent): 重构智能体页面布局和样式

-调整了智能体卡片的布局结构,优化了标题和描述的显示方式
- 改进了历史对话的展示样式,增加了滚动指示器
- 统一了标签和图标的样式,提升了视觉一致性
- 优化了搜索框和卡片列表的样式,提高了用户体验
This commit is contained in:
林志军
2025-07-28 14:45:32 +08:00
parent 8ed40110ae
commit 6a43cfad75
6 changed files with 27 additions and 8 deletions

View File

@ -3,7 +3,7 @@
<span class="" @click="goChatIndex"> <icon-left /> 返回空间 </span>
<div class="chat-contain">
<a-layout>
<a-layout-sider width="15%" style="background: #fff">
<a-layout-sider class="custom-sider" >
<HistoryChat v-if="cozeInfo?.bot_id" :cozeInfo="cozeInfo" />
</a-layout-sider>
<a-layout>
@ -136,4 +136,5 @@ onUnmounted(() => {
<style scoped lang="scss">
@import './style.scss';
</style>