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

- 重新设计了页面布局,分为左、右两个主要区域
- 左侧区域增加了聊天机器人信息展示,包括头像、名称、描述等
- 右侧区域保留聊天窗口,并增加了顶部栏
-优化了响应式布局,使页面在不同屏幕尺寸下都能良好显示
- 调整了颜色、字体等样式,提升了页面视觉效果
This commit is contained in:
林志军
2025-07-31 14:36:45 +08:00
parent 15d15a44c6
commit 7e7a4f363b
8 changed files with 109 additions and 13 deletions

View File

@ -31,3 +31,7 @@ export const executeWorkFlow = (params: any) => {
export const delAgentMessage = (params: any) => {
return Http.post(`/v1/agent/delAgentMessage`, params);
};
// 删除工作流历史记录
export const delWorkflowHistoryApi = (id:number) => {
return Http.post(`/v1/agent/delWorkflowHistory/${id}`);
};