首页更新

This commit is contained in:
2026-07-07 14:36:59 +08:00
parent 6a588015d0
commit 4679280e45
6 changed files with 426 additions and 208 deletions
+2 -1
View File
@@ -153,10 +153,11 @@ export function getCreationList(params: CreationListParams, requestOptions?: Req
}) as Promise<CreationListResponse>;
}
export function getExecutionList(requestOptions?: RequestOptions) {
export function getExecutionList(params?: Record<string, any>, requestOptions?: RequestOptions) {
return request({
url: '/ai-agent/flow/execution/list',
method: 'get',
params,
requestOptions,
}) as Promise<ExecutionListResponse>;
}