diff --git a/src/api/settings/creation/index.ts b/src/api/settings/creation/index.ts index 277a3be..c5bc537 100644 --- a/src/api/settings/creation/index.ts +++ b/src/api/settings/creation/index.ts @@ -153,10 +153,11 @@ export function getCreationList(params: CreationListParams, requestOptions?: Req }) as Promise; } -export function getExecutionList(requestOptions?: RequestOptions) { +export function getExecutionList(params?: Record, requestOptions?: RequestOptions) { return request({ url: '/ai-agent/flow/execution/list', method: 'get', + params, requestOptions, }) as Promise; } diff --git a/src/views/home/components/ChatList.vue b/src/views/home/components/ChatList.vue index 4d5ea89..c3986fb 100644 --- a/src/views/home/components/ChatList.vue +++ b/src/views/home/components/ChatList.vue @@ -1,7 +1,5 @@ \ No newline at end of file diff --git a/src/views/home/components/Sidebar.vue b/src/views/home/components/Sidebar.vue index 66cb2a3..b84b340 100644 --- a/src/views/home/components/Sidebar.vue +++ b/src/views/home/components/Sidebar.vue @@ -38,6 +38,9 @@
{{ item.title }}
+
执行中
+
执行完成
+
执行失败
{{ item.time }}
@@ -83,7 +86,7 @@ @@ -429,4 +564,4 @@ onMounted(() => { width: 100%; min-height: 60vh; } - + \ No newline at end of file