|
|
@@ -914,7 +914,6 @@ const toggleRight = () => {
|
|
|
}
|
|
|
if (last.client_custom_item_mind_map) {
|
|
|
show_mind_map.value = true;
|
|
|
- console.log(last);
|
|
|
getMindMapData({ messageId: last.client_custom_chat_message_id.value, query: mindMap_txt.value }).then((res) => {
|
|
|
if (res.code / 1 === 200) {
|
|
|
mindMap_str.value = res.data.mindmap;
|
|
|
@@ -1314,7 +1313,6 @@ const toSubmitNewChat = async (options) => {
|
|
|
if (options.parent_id) {
|
|
|
parent_id = options.parent_id;
|
|
|
}
|
|
|
- console.log(target_action_config.value);
|
|
|
/**
|
|
|
*判断是否要生成思维导图
|
|
|
* 如果是生成思维导图,则将文本内容保存到mindMap_txt中,用于生成思维导图
|
|
|
@@ -1538,9 +1536,7 @@ const sseOnMessage = (ev) => {
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
- console.log(res_data, last_msg);
|
|
|
const currentChat = formatDialogAnswerFromSseReceiveMessage(res_data, last_msg, props.CHAT_AGENT_INFOMATION);
|
|
|
- // console.log(currentChat);
|
|
|
const chat_status = currentChat.status;
|
|
|
|
|
|
// 处理对话数据
|
|
|
@@ -1709,7 +1705,6 @@ onMounted(() => {
|
|
|
*/
|
|
|
if (props.chat_history) {
|
|
|
show_welcome.value = false;
|
|
|
- console.log(11111111111111111111);
|
|
|
} else {
|
|
|
if (!agent_id && !session_id) {
|
|
|
show_welcome.value = true;
|
|
|
@@ -1750,7 +1745,6 @@ onMounted(() => {
|
|
|
}
|
|
|
|
|
|
chat_log_list.value = list;
|
|
|
- console.log(chat_display_list.value);
|
|
|
// 处理最后一项是否有思维导图或者网页,有的话暂时右侧按钮
|
|
|
toShowRightBtn();
|
|
|
} else {
|