feat: TeamRunCompleted状态处理

This commit is contained in:
rd
2025-08-27 17:41:10 +08:00
parent 1360717647
commit 0406dea56f
4 changed files with 52 additions and 99 deletions

View File

@ -2,7 +2,6 @@
import { message as antdMessage, Tooltip } from 'ant-design-vue';
import { BubbleList } from '@/components/xt-chat/xt-bubble';
import SenderInput from './components/sender-input/index.vue';
import { Typography } from 'ant-design-vue';
import RightView from './components/right-view/index.vue';
import { useRoute } from 'vue-router';
@ -27,7 +26,6 @@ export default {
const rightViewRef = ref(null);
const bubbleListRef = ref<any>(null);
const sseController = ref<any>(null);
const searchValue = ref('');
const conversationId = computed(() => {
return route.params.conversationId;
@ -76,7 +74,6 @@ export default {
sseController.value = querySSE({
method: 'POST',
handleMessage,
handleOpen,
body: JSON.stringify({
content: message,
session_id: conversationId.value,
@ -96,7 +93,6 @@ export default {
rightViewInfo,
currentTaskId,
handleMessage,
handleOpen,
conversationList,
generateLoading,
senderRef,