feat(intelligent-agent): 重构智能体页面

- 更新 API 接口地址
- 优化智能体列表和详情的展示逻辑
- 添加新的智能体类型和相关配置
- 调整样式和布局,提升用户体验
This commit is contained in:
陈昱达
2025-04-29 13:48:58 +08:00
parent 8c5970fa76
commit 7a5292f99f
13 changed files with 189 additions and 65 deletions

View File

@@ -6,6 +6,7 @@
:destroy-on-close="destroyOnClose"
:width="width"
:before-close="handleBeforeClose"
:closeOnClickModal="closeOnClickModal"
>
<div class="render-dialog-body">
<slot name="default"></slot>
@@ -41,6 +42,10 @@ export default {
type: Boolean,
default: false
},
closeOnClickModal: {
type: Boolean,
default: true
},
beforeClose: {
type: Function,
default: null