hanyang 1 год назад
Родитель
Сommit
efb4c9330b

+ 0 - 1
src/modules/conversation-chat/DialogInput.vue

@@ -331,7 +331,6 @@ const action_config = ref({
   mind_map: true
 });
 const actionConfig = (config) => {
-  console.log(config);
   action_config.value = config;
   emit('actionConfigChange', config);
 };

+ 0 - 1
src/modules/conversation-chat/api-conversation-chat-qa.js

@@ -15,7 +15,6 @@ export const conversationQAParameter = (agent_id) => {
       method: 'get'
     })
       .then((res) => {
-        console.log('conversationQAParameter', res);
         if (Object.keys(res).length) {
           resolve({
             code: 200,

+ 0 - 1
src/modules/conversation-dialog/format-dialog-answer-from-history.js

@@ -219,7 +219,6 @@ export default function formatDialogAnswerFromHistory(item, agentInfo) {
     });
   }
   // 添加字段,历史记录中新增思维导图数据,有的话进行回显
-  console.log(item);
   if (item.mindmap) {
     history_item.client_custom_item_mind_map = item.mindmap;
   }

+ 0 - 2
src/modules/form-dynamic/DynamicFormBasic.vue

@@ -202,14 +202,12 @@ const form_fields = computed(() => {
  */
 function initFormValues() {
   const form_info = props.form_params;
-  console.log(form_info);
   const obj = {};
   const len = form_info.length;
 
   for (let i = 0; i < len; i++) {
     const item = form_info[i];
     for (const key in item) {
-      console.log(key);
       const field_tp = item[key].type || key;
       const field_name = item[key].variable;
       const is_required = item[key].required;

+ 0 - 1
src/modules/model-manage/ragflow/MessageBody.vue

@@ -225,7 +225,6 @@ const getAddedModelsRGFun = async () => {
       //   item.name =
       // });
       rag_added_data.value = { ...res.data };
-      console.log(rag_added_data.value);
     }
   } catch (e) {
     console.log(e);

+ 0 - 4
src/views/conversation/ConversationChatContainer.vue

@@ -996,7 +996,6 @@ const toFullScreen = () => {
     original_obj.value.width = fullScreen_mindMap.value.style.width;
     original_obj.value.position = fullScreen_mindMap.value.style.position;
     original_obj.value.zIndex = fullScreen_mindMap.value.style.zIndex;
-    console.log(original_obj.value);
     // 设置div高度为视口高度,避免覆盖浏览器头部
     // fullScreen_mindMap.value.style.removeProperty('height');
     fullScreen_mindMap.value.style.height = window.innerHeight - 90 + 'px';
@@ -1005,8 +1004,6 @@ const toFullScreen = () => {
     fullScreen_mindMap.value.style.top = '0';
     fullScreen_mindMap.value.style.left = '0';
     fullScreen_mindMap.value.style.zIndex = '9995';
-
-    console.log(fullScreen_mindMap.value.style.height);
     // zoomReset();
   }
 };
@@ -1645,7 +1642,6 @@ const stopResponse = () => {
 const toShowRightBtn = () => {
   if (chat_display_list.value.length) {
     const last_item = chat_display_list.value.at(-1);
-    console.log(last_item);
     if (last_item.client_custom_item_mind_map) {
       show_right_page_btn.value = true;
     }