zhangxiao
2024-08-24 4c35da613ea83ca3cfddbd76a93755c88cafd3b0
fix: bug
1个文件已修改
108 ■■■■■ 已修改文件
src/views/sessionManager/index.vue 108 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sessionManager/index.vue
@@ -23,14 +23,16 @@
                <!--                <span class="title">{{ agentTitle }}</span>-->
                <a-popover position="bottom" trigger="click">
                  <a-button border
                    >
                    <span style="
                  <a-button border>
                    <span
                      style="
                       width: 100px;
                      overflow: hidden;
                      text-overflow: ellipsis;
                      white-space: nowrap;
                    ">{{ from.name }}</span>
                      "
                      >{{ from.name }}</span
                    >
                    <icon-down style="margin-left: 4px" />
                  </a-button>
                  <template #content>
@@ -55,13 +57,12 @@
            ref="scrollbar"
            id="home"
            class="chat-list"
            style="
              width: 80%;
              overflow: auto;
              margin: 0px auto 20px;
            "
            style="width: 80%; overflow: auto; margin: 0px auto 20px"
            :style="{
              height:uploaditemList.length > 0 ? 'calc(100vh - 480px)' : 'calc(100vh - 380px)'
              height:
                uploaditemList.length > 0
                  ? 'calc(100vh - 480px)'
                  : 'calc(100vh - 380px)',
            }"
          >
            <div
@@ -221,7 +222,11 @@
                v-model="inputMsg"
                @keydown.shift.enter="handleShiftEnter"
                @keydown.enter="sendMessage"
                :placeholder="uploaditemList.length>0?'整理这些文件的核心内容':'输入您想了解的内容,Shift+Enter换行,Enter发送'"
                :placeholder="
                  uploaditemList.length > 0
                    ? '整理这些文件的核心内容'
                    : '输入您想了解的内容,Shift+Enter换行,Enter发送'
                "
                allow-clear
                show-word-limit
                :disabled="chatDis"
@@ -235,8 +240,18 @@
                  maxRows: 5,
                }"
              />
              <div style="width: 100%;display: flex;justify-content: space-between">
                <updataFile ref="fileInput" :sessionId="activeSessionId" @selectFileCallback="selectFileCallback"></updataFile>
              <div
                style="
                  width: 100%;
                  display: flex;
                  justify-content: space-between;
                "
              >
                <updataFile
                  ref="fileInput"
                  :sessionId="activeSessionId"
                  @selectFileCallback="selectFileCallback"
                ></updataFile>
                <a-button
                  :disabled="chatDis"
                  @click="sentClick"
@@ -253,7 +268,12 @@
                class="files"
                v-for="(item, index) in uploaditemList"
                :key="index"
                style="position: relative; width: 200px; margin-top: 10px;margin-right: 20px"
                style="
                  position: relative;
                  width: 200px;
                  margin-top: 10px;
                  margin-right: 20px;
                "
              >
                <a-comment
                  :author="item.name"
@@ -328,12 +348,7 @@
      :footer="false"
      title-align="start"
    >
      <a-form
        ref="formRef"
        :rules="rules"
        :model="from"
        @submit="handleSubmit"
      >
      <a-form ref="formRef" :rules="rules" :model="from" @submit="handleSubmit">
        <a-form-item field="name" label="名称">
          <a-input v-model="from.name" placeholder="请输入名称" />
        </a-form-item>
@@ -397,9 +412,9 @@
  const sessionDetailList = ref([
    {
      "content": "你好! 我是你的助理,有什么可以帮到你的吗?",
      "role": "assistant"
    }
      content: '你好! 我是你的助理,有什么可以帮到你的吗?',
      role: 'assistant',
    },
  ]); //根据会话id出来的会话详情
  const messagenList = ref({});
  const sessionList = ref([]); //会话列表
@@ -559,8 +574,6 @@
    await toClipboard(text); //参数为要复制的文本
  };
  const DialogList = async () => {
    const { code, data } = await getDialogListApi();
    if (code === 200) {
@@ -647,21 +660,34 @@
          event.preventDefault(); // 阻止默认行为,即不换行
        }
        // if (!activeSessionId.value) {
        //   Message.warning("请选择会话");
        //   chatDis.value = false;
        //   loading.value = false;
        //   return;
        // }
        // if (displayedText.value) {
        //   querySessionList();
        // }
        if (inputMsg.value) {
          startChat(inputMsg.value);
          if (!activeSessionId.value) {
            //新建会话
            // 如果有会话id
            console.log(inputMsg.value, '新建会话名称');
            const res = await addSessionApi({
              dialog_id: '',
              conversation_desc: inputMsg.value,
            });
            // console.log(res, "res");
            if (res.code == 200) {
              // console.log(res.data.conversation_id);
              activeSessionId.value = res.data?.conversation_id;
              startChat(inputMsg.value);
          inputMsg.value = '';
              // queryNewSessionDetail(res.data?.conversation_id);
            } else {
              Message.error('创建会话失败,请重试');
            }
          } else {
            startChat(inputMsg.value);
            inputMsg.value = '';
          }
        } else {
          Message.warning('消息不能为空');
        }
@@ -863,18 +889,24 @@
    querySessionList();
  };
  onBeforeMount(() => {
    //新建会话
    createSession('');
    activeSessionId.value = '';
  });
  onMounted(() => {
    let container = document.getElementById('container');
    container.addEventListener('click', () => {
      fileInput.value.cancel();
    })
    });
    EventBus.on('newChat', () => {
      agentType.value = '1';
      createSession('');
      // createSession('');
      activeSessionId.value = '';
      sessionDetailList.value = [
        {
          content: '你好! 我是你的助理,有什么可以帮到你的吗?',
          role: 'assistant',
        },
      ];
      from.name = '未命名会话';
    });
  });
  onBeforeUnmount(() => {