2025-11-04 18:49:37 +08:00
|
|
|
|
<template>
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<div v-if="hasAgent" class="ai-agent" :class="{ expanded: !isBall }">
|
2025-11-04 18:49:37 +08:00
|
|
|
|
<div v-if="isBall" class="ball-container" ref="ballRef">
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<!-- 悬浮球 -->
|
|
|
|
|
|
<div class="chat-ball" @mousedown="startDrag" @touchstart="startDrag" :style="ballStyle">
|
2025-11-04 18:49:37 +08:00
|
|
|
|
<img src="@/assets/imgs/chat-ball.svg" alt="AI助手" class="ball-icon" />
|
|
|
|
|
|
<!-- 未读消息提示 -->
|
|
|
|
|
|
<div v-if="unreadCount > 0" class="unread-badge">{{ unreadCount }}</div>
|
|
|
|
|
|
</div>
|
2025-11-05 16:55:58 +08:00
|
|
|
|
</div>
|
2025-11-04 18:49:37 +08:00
|
|
|
|
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<div v-else class="ai-agent-content">
|
2025-11-04 18:49:37 +08:00
|
|
|
|
<!-- 左侧:对话历史列表 -->
|
|
|
|
|
|
<div class="ai-agent-history" :class="{ collapsed: historyCollapsed }">
|
|
|
|
|
|
<div class="history-header">
|
|
|
|
|
|
<h3>对话历史</h3>
|
|
|
|
|
|
<button @click="historyCollapsed = !historyCollapsed" class="collapse-btn">
|
|
|
|
|
|
{{ historyCollapsed ? '展开' : '收起' }}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div v-if="!historyCollapsed" class="history-list">
|
|
|
|
|
|
<!-- 新建对话按钮 -->
|
2025-11-06 16:43:28 +08:00
|
|
|
|
<button class="new-chat-btn" @click="prepareNewConversation">
|
2025-11-04 18:49:37 +08:00
|
|
|
|
+ 新建对话
|
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 历史对话列表 -->
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<div v-for="conv in conversations" :key="conv.id" class="conversation-item"
|
|
|
|
|
|
:class="{ active: currentConversation?.id === conv.id }" @click="selectConversation(conv)">
|
2025-11-04 18:49:37 +08:00
|
|
|
|
<div class="conv-title">{{ conv.title || '新对话' }}</div>
|
|
|
|
|
|
<div class="conv-time">{{ formatTime(conv.updateTime) }}</div>
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<button class="delete-conv-btn" @click.stop="deleteConversationConfirm(conv.id || '')">
|
2025-11-04 18:49:37 +08:00
|
|
|
|
×
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 加载更多 -->
|
|
|
|
|
|
<div v-if="hasMoreConversations" class="load-more">
|
|
|
|
|
|
<button @click="loadMoreConversations">加载更多</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-11-05 16:55:58 +08:00
|
|
|
|
</div>
|
2025-11-04 18:49:37 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 右侧:当前对话窗口 -->
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<div class="ai-agent-current-chat">
|
|
|
|
|
|
<div class="current-chat-header">
|
|
|
|
|
|
<div class="current-chat-title">
|
|
|
|
|
|
<input v-if="editingTitle" v-model="editTitleValue" @blur="saveTitle" @keyup.enter="saveTitle"
|
|
|
|
|
|
class="title-input" autofocus />
|
2025-11-04 18:49:37 +08:00
|
|
|
|
<span v-else @dblclick="startEditTitle">
|
|
|
|
|
|
{{ currentConversation?.title || '新对话' }}
|
|
|
|
|
|
</span>
|
2025-11-05 16:55:58 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="current-chat-action">
|
2025-11-04 18:49:37 +08:00
|
|
|
|
<button @click="minimizeChat" class="action-btn" title="最小化">
|
|
|
|
|
|
<span>−</span>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<button @click="clearCurrentConversation" class="action-btn" title="清空对话">
|
|
|
|
|
|
<img src="@/assets/imgs/trashbin-grey.svg" alt="清空" class="icon">
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 对话内容区域 -->
|
|
|
|
|
|
<div class="current-chat-content" ref="chatContentRef">
|
|
|
|
|
|
<!-- 欢迎消息 -->
|
|
|
|
|
|
<div v-if="messages.length === 0" class="welcome-message">
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<div class="welcome-icon">
|
|
|
|
|
|
<img v-if="agentAvatarUrl" :src="agentAvatarUrl" alt="AI助手" class="welcome-avatar" />
|
|
|
|
|
|
<img v-else src="@/assets/imgs/assistant.svg" alt="AI助手" class="welcome-avatar" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<h2>你好!我是{{ agentConfig?.name || 'AI助手' }}</h2>
|
2025-11-18 11:48:01 +08:00
|
|
|
|
<AIRecommend />
|
2025-11-04 18:49:37 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 消息列表 -->
|
|
|
|
|
|
<div v-for="message in messages" :key="message.id" class="message-item">
|
|
|
|
|
|
<!-- 用户消息 -->
|
|
|
|
|
|
<div v-if="message.role === 'user'" class="message user-message">
|
|
|
|
|
|
<div class="message-avatar">
|
|
|
|
|
|
<div class="avatar-circle">👤</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="message-content">
|
|
|
|
|
|
<div class="message-text">{{ message.content }}</div>
|
2025-11-06 16:43:28 +08:00
|
|
|
|
<!-- 文件列表 -->
|
|
|
|
|
|
<div v-if="message.files && message.files.length > 0" class="message-files">
|
|
|
|
|
|
<div v-for="file in message.files" :key="file.id" class="message-file-item">
|
|
|
|
|
|
<a :href="`/api/file/download/${file.sysFileId || file.filePath}`"
|
|
|
|
|
|
:download="file.fileName"
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
class="file-link">
|
|
|
|
|
|
<span class="file-icon">📎</span>
|
|
|
|
|
|
<span class="file-name">{{ file.fileName }}</span>
|
|
|
|
|
|
<span class="file-size">({{ formatFileSize(file.fileSize) }})</span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-11-04 18:49:37 +08:00
|
|
|
|
<div class="message-time">{{ formatMessageTime(message.createTime) }}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- AI 消息 -->
|
|
|
|
|
|
<div v-else class="message ai-message">
|
|
|
|
|
|
<div class="message-avatar">
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<div class="avatar-circle ai-avatar">
|
|
|
|
|
|
<img v-if="agentAvatarUrl" :src="agentAvatarUrl" alt="AI助手" class="ai-avatar-img" />
|
|
|
|
|
|
<span v-else>🤖</span>
|
|
|
|
|
|
</div>
|
2025-11-04 18:49:37 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="message-content">
|
2025-11-06 16:43:28 +08:00
|
|
|
|
<!-- 显示消息内容 -->
|
|
|
|
|
|
<div v-if="message.content" class="message-text" v-html="formatMarkdown(message.content)"></div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 正在生成中的加载动画 -->
|
|
|
|
|
|
<div v-if="isGenerating && messages[messages.length - 1]?.id === message.id" class="typing-indicator-inline">
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<span></span>
|
|
|
|
|
|
<span></span>
|
|
|
|
|
|
<span></span>
|
2025-11-04 18:49:37 +08:00
|
|
|
|
</div>
|
2025-11-06 16:43:28 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 消息底部:时间和操作按钮 -->
|
|
|
|
|
|
<div v-if="message.content" class="message-footer">
|
|
|
|
|
|
<div class="message-time">{{ formatMessageTime(message.createTime) }}</div>
|
|
|
|
|
|
<div class="message-actions">
|
|
|
|
|
|
<button @click="copyMessage(message.content || '')" class="msg-action-btn" title="复制">
|
|
|
|
|
|
📋
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<button @click="regenerateMessage(message.id || '')" class="msg-action-btn" title="重新生成">
|
|
|
|
|
|
🔄
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<button @click="rateMessage(message.id || '', 1)" class="msg-action-btn"
|
|
|
|
|
|
:class="{ active: message.rating === 1 }" title="好评">
|
|
|
|
|
|
👍
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<button @click="rateMessage(message.id || '', -1)" class="msg-action-btn"
|
|
|
|
|
|
:class="{ active: message.rating === -1 }" title="差评">
|
|
|
|
|
|
👎
|
|
|
|
|
|
</button>
|
2025-11-05 16:55:58 +08:00
|
|
|
|
</div>
|
2025-11-06 16:43:28 +08:00
|
|
|
|
</div>
|
2025-11-04 18:49:37 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-11-05 16:55:58 +08:00
|
|
|
|
</div>
|
2025-11-04 18:49:37 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 输入区域 -->
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<div class="current-chat-input">
|
2025-11-04 18:49:37 +08:00
|
|
|
|
<!-- 已上传文件列表 -->
|
|
|
|
|
|
<div v-if="uploadedFiles.length > 0" class="input-files">
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<div v-for="(file, index) in uploadedFiles" :key="index" class="uploaded-file-item">
|
2025-11-04 18:49:37 +08:00
|
|
|
|
<span class="file-name">{{ file.name }}</span>
|
|
|
|
|
|
<button @click="removeUploadedFile(index)" class="remove-file-btn">×</button>
|
|
|
|
|
|
</div>
|
2025-11-05 16:55:58 +08:00
|
|
|
|
</div>
|
2025-11-04 18:49:37 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 输入框 -->
|
|
|
|
|
|
<div class="input-area">
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<textarea v-model="inputMessage" class="input-text" placeholder="请输入问题..."
|
|
|
|
|
|
@keydown.enter.exact.prevent="sendMessage" @keydown.shift.enter="handleShiftEnter" ref="inputRef"
|
|
|
|
|
|
rows="1" />
|
|
|
|
|
|
|
|
|
|
|
|
<div class="input-action">
|
2025-11-04 18:49:37 +08:00
|
|
|
|
<button @click="triggerFileUpload" class="action-icon-btn" title="上传文件">
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<img src="@/assets/imgs/link.svg" alt="上传文件" class="link-icon" />
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<!-- 停止生成按钮 -->
|
|
|
|
|
|
<button v-if="isGenerating" @click="stopGenerating" class="action-icon-btn stop-btn" title="停止生成">
|
|
|
|
|
|
<span class="stop-icon">⏹</span>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<!-- 发送按钮 -->
|
|
|
|
|
|
<button v-else @click="sendMessage" class="action-icon-btn send-btn" :disabled="!canSend" title="发送 (Enter)">
|
|
|
|
|
|
<img src="@/assets/imgs/send.svg" alt="发送" class="send-icon" />
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
2025-11-04 18:49:37 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 隐藏的文件上传input -->
|
2025-11-05 16:55:58 +08:00
|
|
|
|
<input type="file" ref="fileInputRef" @change="handleFileUpload" style="display: none" multiple
|
|
|
|
|
|
accept=".txt,.pdf,.doc,.docx,.md" />
|
2025-11-04 18:49:37 +08:00
|
|
|
|
</div>
|
2025-11-05 16:55:58 +08:00
|
|
|
|
</div>
|
2025-11-04 18:49:37 +08:00
|
|
|
|
</div>
|
2025-11-05 16:55:58 +08:00
|
|
|
|
</div>
|
2025-11-04 18:49:37 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
import { ref, computed, onMounted, onUnmounted, nextTick } from 'vue';
|
|
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus';
|
2025-11-06 16:43:28 +08:00
|
|
|
|
import { chatApi, chatHistoryApi, aiAgentConfigApi, fileUploadApi } from '@/apis/ai';
|
|
|
|
|
|
import type { AiConversation, AiMessage, AiAgentConfig, AiUploadFile } from '@/types/ai';
|
2025-11-18 11:48:01 +08:00
|
|
|
|
import { AIRecommend } from '@/views/public/ai';
|
2025-11-04 18:49:37 +08:00
|
|
|
|
|
|
|
|
|
|
interface AIAgentProps {
|
|
|
|
|
|
agentId?: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const props = withDefaults(defineProps<AIAgentProps>(), {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
agentId: undefined
|
2025-11-04 18:49:37 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
2025-11-05 16:55:58 +08:00
|
|
|
|
// ===== AI助手配置 =====
|
|
|
|
|
|
const hasAgent = ref(true);
|
|
|
|
|
|
const agentConfig = ref<AiAgentConfig | null>(null);
|
|
|
|
|
|
|
|
|
|
|
|
// 缓存头像URL为blob,避免重复下载
|
|
|
|
|
|
const agentAvatarUrl = ref<string>('');
|
|
|
|
|
|
const cachedAvatarPath = ref<string>('');
|
|
|
|
|
|
|
|
|
|
|
|
// 加载并缓存头像
|
|
|
|
|
|
async function loadAndCacheAvatar(avatarPath: string) {
|
|
|
|
|
|
if (!avatarPath || cachedAvatarPath.value === avatarPath) {
|
|
|
|
|
|
return; // 已缓存,跳过
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const response = await fetch("/api/file/download/" + avatarPath);
|
|
|
|
|
|
if (response.ok) {
|
|
|
|
|
|
const blob = await response.blob();
|
|
|
|
|
|
// 释放旧的blob URL
|
|
|
|
|
|
if (agentAvatarUrl.value && agentAvatarUrl.value.startsWith('blob:')) {
|
|
|
|
|
|
URL.revokeObjectURL(agentAvatarUrl.value);
|
|
|
|
|
|
}
|
|
|
|
|
|
// 创建新的blob URL
|
|
|
|
|
|
agentAvatarUrl.value = URL.createObjectURL(blob);
|
|
|
|
|
|
cachedAvatarPath.value = avatarPath;
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.warn('加载头像失败:', error);
|
|
|
|
|
|
agentAvatarUrl.value = '';
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 加载AI助手配置
|
|
|
|
|
|
async function loadAgentConfig() {
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 优先根据agentId获取,如果没有则获取启用的助手列表
|
|
|
|
|
|
if (props.agentId) {
|
|
|
|
|
|
const result = await aiAgentConfigApi.getAgentById(props.agentId);
|
|
|
|
|
|
if (result.success && result.data) {
|
|
|
|
|
|
agentConfig.value = result.data;
|
|
|
|
|
|
// 加载并缓存头像
|
|
|
|
|
|
if (result.data.avatar) {
|
|
|
|
|
|
await loadAndCacheAvatar(result.data.avatar);
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
hasAgent.value = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 获取启用的助手列表,使用第一个
|
|
|
|
|
|
const result = await aiAgentConfigApi.listEnabledAgents();
|
|
|
|
|
|
if (result.success && result.dataList && result.dataList.length > 0) {
|
|
|
|
|
|
agentConfig.value = result.dataList[0];
|
|
|
|
|
|
// 加载并缓存头像
|
|
|
|
|
|
if (result.dataList[0].avatar) {
|
|
|
|
|
|
await loadAndCacheAvatar(result.dataList[0].avatar);
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
hasAgent.value = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('加载AI助手配置失败:', error);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// ===== 悬浮球相关 =====
|
2025-11-05 16:55:58 +08:00
|
|
|
|
const isBall = ref(true);
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const ballRef = ref<HTMLElement | null>(null);
|
|
|
|
|
|
const isDragging = ref(false);
|
|
|
|
|
|
const dragStartX = ref(0);
|
|
|
|
|
|
const dragStartY = ref(0);
|
|
|
|
|
|
const ballX = ref(0);
|
|
|
|
|
|
const ballY = ref(0);
|
|
|
|
|
|
const unreadCount = ref(0);
|
|
|
|
|
|
|
2025-11-05 16:55:58 +08:00
|
|
|
|
// 存储悬浮球的相对位置(百分比),用于窗口resize时保持相对位置
|
|
|
|
|
|
const ballXPercent = ref(1); // 1 表示右侧
|
|
|
|
|
|
const ballYPercent = ref(0.5); // 0.5 表示垂直居中
|
|
|
|
|
|
const isUserDragged = ref(false); // 标记用户是否手动拖动过
|
|
|
|
|
|
|
|
|
|
|
|
// 拖拽检测相关
|
|
|
|
|
|
const dragStartPosX = ref(0); // 记录拖拽开始时的实际位置
|
|
|
|
|
|
const dragStartPosY = ref(0);
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const ballStyle = computed(() => ({
|
|
|
|
|
|
left: `${ballX.value}px`,
|
|
|
|
|
|
top: `${ballY.value}px`
|
|
|
|
|
|
}));
|
|
|
|
|
|
|
2025-11-05 16:55:58 +08:00
|
|
|
|
// 根据百分比计算实际位置
|
|
|
|
|
|
function updateBallPosition() {
|
|
|
|
|
|
const windowWidth = window.innerWidth;
|
|
|
|
|
|
const windowHeight = window.innerHeight;
|
|
|
|
|
|
const ballWidth = 40;
|
|
|
|
|
|
const ballHeight = 40;
|
|
|
|
|
|
const margin = 20;
|
|
|
|
|
|
|
|
|
|
|
|
// 根据百分比计算位置
|
|
|
|
|
|
if (ballXPercent.value < 0.5) {
|
|
|
|
|
|
// 左侧
|
|
|
|
|
|
ballX.value = margin;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 右侧
|
|
|
|
|
|
ballX.value = windowWidth - ballWidth - margin;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 计算Y位置,确保不超出边界
|
|
|
|
|
|
let targetY = windowHeight * ballYPercent.value - ballHeight / 2;
|
|
|
|
|
|
targetY = Math.max(margin, Math.min(targetY, windowHeight - ballHeight - margin));
|
|
|
|
|
|
ballY.value = targetY;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 窗口resize监听器
|
|
|
|
|
|
function handleResize() {
|
|
|
|
|
|
updateBallPosition();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 初始化悬浮球位置
|
|
|
|
|
|
onMounted(() => {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
// 默认位置:右侧,垂直居中(50vh)
|
|
|
|
|
|
updateBallPosition();
|
|
|
|
|
|
|
|
|
|
|
|
// 监听窗口resize事件
|
|
|
|
|
|
window.addEventListener('resize', handleResize);
|
|
|
|
|
|
|
|
|
|
|
|
// 加载AI助手配置
|
|
|
|
|
|
loadAgentConfig();
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 加载最近对话
|
|
|
|
|
|
loadRecentConversations();
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-11-05 16:55:58 +08:00
|
|
|
|
// 清理监听器和资源
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
|
|
window.removeEventListener('resize', handleResize);
|
|
|
|
|
|
// 释放blob URL
|
|
|
|
|
|
if (agentAvatarUrl.value && agentAvatarUrl.value.startsWith('blob:')) {
|
|
|
|
|
|
URL.revokeObjectURL(agentAvatarUrl.value);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 开始拖动
|
|
|
|
|
|
function startDrag(e: MouseEvent | TouchEvent) {
|
|
|
|
|
|
isDragging.value = true;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const clientX = 'touches' in e ? e.touches[0].clientX : e.clientX;
|
|
|
|
|
|
const clientY = 'touches' in e ? e.touches[0].clientY : e.clientY;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
dragStartX.value = clientX - ballX.value;
|
|
|
|
|
|
dragStartY.value = clientY - ballY.value;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
// 记录起始位置,用于判断是点击还是拖拽
|
|
|
|
|
|
dragStartPosX.value = ballX.value;
|
|
|
|
|
|
dragStartPosY.value = ballY.value;
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
document.addEventListener('mousemove', onDrag);
|
|
|
|
|
|
document.addEventListener('touchmove', onDrag);
|
|
|
|
|
|
document.addEventListener('mouseup', stopDrag);
|
|
|
|
|
|
document.addEventListener('touchend', stopDrag);
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 拖动中
|
|
|
|
|
|
function onDrag(e: MouseEvent | TouchEvent) {
|
|
|
|
|
|
if (!isDragging.value) return;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const clientX = 'touches' in e ? e.touches[0].clientX : e.clientX;
|
|
|
|
|
|
const clientY = 'touches' in e ? e.touches[0].clientY : e.clientY;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
ballX.value = clientX - dragStartX.value;
|
|
|
|
|
|
ballY.value = clientY - dragStartY.value;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 停止拖动
|
|
|
|
|
|
function stopDrag() {
|
|
|
|
|
|
if (!isDragging.value) return;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
isDragging.value = false;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
document.removeEventListener('mousemove', onDrag);
|
|
|
|
|
|
document.removeEventListener('touchmove', onDrag);
|
|
|
|
|
|
document.removeEventListener('mouseup', stopDrag);
|
|
|
|
|
|
document.removeEventListener('touchend', stopDrag);
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
// 计算移动距离
|
|
|
|
|
|
const moveDistanceX = Math.abs(ballX.value - dragStartPosX.value);
|
|
|
|
|
|
const moveDistanceY = Math.abs(ballY.value - dragStartPosY.value);
|
|
|
|
|
|
const totalDistance = Math.sqrt(moveDistanceX * moveDistanceX + moveDistanceY * moveDistanceY);
|
|
|
|
|
|
|
|
|
|
|
|
// 判断是点击还是拖拽(移动距离阈值为5px)
|
|
|
|
|
|
const isClick = totalDistance <= 5;
|
|
|
|
|
|
|
|
|
|
|
|
if (isClick) {
|
|
|
|
|
|
// 如果是点击,展开对话框
|
|
|
|
|
|
expandChat();
|
2025-11-04 18:49:37 +08:00
|
|
|
|
} else {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
// 如果是拖拽,执行吸附和位置调整
|
|
|
|
|
|
isUserDragged.value = true;
|
|
|
|
|
|
|
|
|
|
|
|
const windowWidth = window.innerWidth;
|
|
|
|
|
|
const windowHeight = window.innerHeight;
|
|
|
|
|
|
const ballWidth = 40;
|
|
|
|
|
|
const ballHeight = 40;
|
|
|
|
|
|
const margin = 20;
|
|
|
|
|
|
|
|
|
|
|
|
// 自动吸附到左右两侧
|
|
|
|
|
|
if (ballX.value < windowWidth / 2) {
|
|
|
|
|
|
// 吸附到左侧
|
|
|
|
|
|
ballX.value = margin;
|
|
|
|
|
|
ballXPercent.value = 0;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 吸附到右侧
|
|
|
|
|
|
ballX.value = windowWidth - ballWidth - margin;
|
|
|
|
|
|
ballXPercent.value = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 限制垂直位置并保存百分比
|
|
|
|
|
|
if (ballY.value < margin) {
|
|
|
|
|
|
ballY.value = margin;
|
|
|
|
|
|
} else if (ballY.value > windowHeight - ballHeight - margin) {
|
|
|
|
|
|
ballY.value = windowHeight - ballHeight - margin;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 保存Y位置的百分比(以中心点计算)
|
|
|
|
|
|
ballYPercent.value = (ballY.value + ballHeight / 2) / windowHeight;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 展开对话
|
|
|
|
|
|
function expandChat() {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
if (isDragging.value) return; // 拖动过程中不触发
|
2025-11-04 18:49:37 +08:00
|
|
|
|
isBall.value = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 最小化对话
|
|
|
|
|
|
function minimizeChat() {
|
|
|
|
|
|
isBall.value = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ===== 对话历史相关 =====
|
|
|
|
|
|
const historyCollapsed = ref(false);
|
|
|
|
|
|
const conversations = ref<AiConversation[]>([]);
|
|
|
|
|
|
const currentConversation = ref<AiConversation | null>(null);
|
|
|
|
|
|
const hasMoreConversations = ref(false);
|
|
|
|
|
|
const conversationPage = ref(1);
|
|
|
|
|
|
|
|
|
|
|
|
// 加载最近对话
|
|
|
|
|
|
async function loadRecentConversations() {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const result = await chatHistoryApi.getRecentConversations(10);
|
2025-11-05 16:55:58 +08:00
|
|
|
|
if (result.success) {
|
|
|
|
|
|
// 后端返回List,所以数据在dataList字段
|
|
|
|
|
|
const conversationList = result.dataList || result.data;
|
|
|
|
|
|
if (conversationList && Array.isArray(conversationList)) {
|
|
|
|
|
|
conversations.value = conversationList;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
conversations.value = [];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-08 10:56:32 +08:00
|
|
|
|
// 不自动选中对话,等待用户手动点击
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 如果有对话,自动选中第一个
|
2025-11-08 10:56:32 +08:00
|
|
|
|
// if (conversations.value.length > 0 && !currentConversation.value) {
|
|
|
|
|
|
// await selectConversation(conversations.value[0]);
|
|
|
|
|
|
// }
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('加载对话历史失败:', error);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 加载更多对话
|
|
|
|
|
|
async function loadMoreConversations() {
|
|
|
|
|
|
conversationPage.value++;
|
|
|
|
|
|
// TODO: 实现分页加载
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-06 16:43:28 +08:00
|
|
|
|
// 准备新对话(只清空状态,不创建conversation)
|
|
|
|
|
|
function prepareNewConversation() {
|
|
|
|
|
|
currentConversation.value = null;
|
|
|
|
|
|
messages.value = [];
|
|
|
|
|
|
ElMessage.success('已准备新对话,发送消息后将自动创建');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 创建新对话(内部使用,在发送第一条消息时调用)
|
2025-11-05 16:55:58 +08:00
|
|
|
|
async function createNewConversation(title?: string) {
|
2025-11-04 18:49:37 +08:00
|
|
|
|
try {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
const result = await chatApi.createConversation(agentConfig.value!.id!, title);
|
2025-11-04 18:49:37 +08:00
|
|
|
|
if (result.success && result.data) {
|
|
|
|
|
|
currentConversation.value = result.data;
|
2025-11-06 16:43:28 +08:00
|
|
|
|
// 将新创建的对话添加到列表开头
|
2025-11-04 18:49:37 +08:00
|
|
|
|
conversations.value.unshift(result.data);
|
2025-11-06 16:43:28 +08:00
|
|
|
|
return result.data;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('创建对话失败:', error);
|
|
|
|
|
|
ElMessage.error('创建对话失败');
|
2025-11-06 16:43:28 +08:00
|
|
|
|
return null;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 选择对话
|
|
|
|
|
|
async function selectConversation(conv: AiConversation) {
|
|
|
|
|
|
currentConversation.value = conv;
|
|
|
|
|
|
if (conv.id) {
|
|
|
|
|
|
await loadMessages(conv.id);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 删除对话确认
|
|
|
|
|
|
async function deleteConversationConfirm(conversationId: string) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
await ElMessageBox.confirm('确定要删除这个对话吗?', '提示', {
|
|
|
|
|
|
confirmButtonText: '删除',
|
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
|
type: 'warning'
|
|
|
|
|
|
});
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const result = await chatApi.deleteConversation(conversationId);
|
|
|
|
|
|
if (result.success) {
|
|
|
|
|
|
conversations.value = conversations.value.filter(c => c.id !== conversationId);
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
if (currentConversation.value?.id === conversationId) {
|
|
|
|
|
|
currentConversation.value = null;
|
|
|
|
|
|
messages.value = [];
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 选择第一个对话
|
|
|
|
|
|
if (conversations.value.length > 0) {
|
|
|
|
|
|
await selectConversation(conversations.value[0]);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
ElMessage.success('对话已删除');
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
if (error !== 'cancel') {
|
|
|
|
|
|
console.error('删除对话失败:', error);
|
|
|
|
|
|
ElMessage.error('删除对话失败');
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 清空当前对话
|
|
|
|
|
|
async function clearCurrentConversation() {
|
|
|
|
|
|
try {
|
|
|
|
|
|
await ElMessageBox.confirm('确定要清空当前对话吗?', '提示', {
|
|
|
|
|
|
confirmButtonText: '清空',
|
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
|
type: 'warning'
|
|
|
|
|
|
});
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
messages.value = [];
|
|
|
|
|
|
ElMessage.success('对话已清空');
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
// 用户取消
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 编辑标题
|
|
|
|
|
|
const editingTitle = ref(false);
|
|
|
|
|
|
const editTitleValue = ref('');
|
|
|
|
|
|
|
|
|
|
|
|
function startEditTitle() {
|
|
|
|
|
|
if (!currentConversation.value) return;
|
|
|
|
|
|
editingTitle.value = true;
|
|
|
|
|
|
editTitleValue.value = currentConversation.value.title || '';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function saveTitle() {
|
|
|
|
|
|
if (!currentConversation.value) return;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
editingTitle.value = false;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
if (editTitleValue.value && editTitleValue.value !== currentConversation.value.title) {
|
|
|
|
|
|
currentConversation.value.title = editTitleValue.value;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
try {
|
|
|
|
|
|
await chatApi.updateConversation(currentConversation.value);
|
|
|
|
|
|
ElMessage.success('标题已更新');
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('更新标题失败:', error);
|
|
|
|
|
|
ElMessage.error('更新标题失败');
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ===== 消息相关 =====
|
|
|
|
|
|
const messages = ref<AiMessage[]>([]);
|
|
|
|
|
|
const inputMessage = ref('');
|
|
|
|
|
|
const isGenerating = ref(false);
|
2025-11-05 16:55:58 +08:00
|
|
|
|
const currentEventSource = ref<EventSource | null>(null); // 当前的EventSource连接
|
|
|
|
|
|
const currentMessageId = ref<string | null>(null); // 当前AI消息的数据库ID(用于停止生成)
|
|
|
|
|
|
const currentTaskId = ref<string | null>(null); // 当前任务的task_id(Dify的消息ID)
|
|
|
|
|
|
const difyEventData = ref<Record<string, any>>({}); // 存储Dify事件数据
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const chatContentRef = ref<HTMLElement | null>(null);
|
|
|
|
|
|
const inputRef = ref<HTMLTextAreaElement | null>(null);
|
|
|
|
|
|
|
2025-11-06 16:43:28 +08:00
|
|
|
|
// 消息文件列表缓存
|
|
|
|
|
|
const messageFilesCache = ref<Record<string, any[]>>({});
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 加载消息
|
|
|
|
|
|
async function loadMessages(conversationId: string) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const result = await chatApi.listMessages(conversationId);
|
2025-11-05 16:55:58 +08:00
|
|
|
|
if (result.success) {
|
|
|
|
|
|
// 后端返回List,所以数据在dataList字段
|
|
|
|
|
|
const messageList = result.dataList || result.data || [];
|
|
|
|
|
|
messages.value = Array.isArray(messageList) ? messageList : [];
|
2025-11-06 16:43:28 +08:00
|
|
|
|
|
2025-11-08 10:56:32 +08:00
|
|
|
|
// 加载每条用户消息的关联文件(只有当fileIDs不为空时)
|
2025-11-06 16:43:28 +08:00
|
|
|
|
for (const message of messages.value) {
|
2025-11-08 10:56:32 +08:00
|
|
|
|
if (message.role === 'user' && message.id && message.fileIDs) {
|
|
|
|
|
|
// 检查fileIDs是否不为空(可能是JSON字符串或数组)
|
|
|
|
|
|
let hasFiles = false;
|
|
|
|
|
|
const fileIDs = message.fileIDs;
|
|
|
|
|
|
if (typeof fileIDs === 'string') {
|
|
|
|
|
|
hasFiles = fileIDs.trim() !== '' && fileIDs !== '[]';
|
|
|
|
|
|
} else if (Array.isArray(fileIDs)) {
|
|
|
|
|
|
hasFiles = (fileIDs as any[]).length > 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (hasFiles) {
|
|
|
|
|
|
await loadMessageFiles(message.id);
|
|
|
|
|
|
}
|
2025-11-06 16:43:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
await nextTick();
|
|
|
|
|
|
scrollToBottom();
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('加载消息失败:', error);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-06 16:43:28 +08:00
|
|
|
|
// 加载消息关联的文件列表
|
|
|
|
|
|
async function loadMessageFiles(messageId: string) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const result = await fileUploadApi.listFilesByMessage(messageId);
|
|
|
|
|
|
if (result.success && result.dataList) {
|
|
|
|
|
|
messageFilesCache.value[messageId] = result.dataList;
|
|
|
|
|
|
|
|
|
|
|
|
// 将文件列表附加到消息对象上
|
|
|
|
|
|
const message = messages.value.find(m => m.id === messageId);
|
|
|
|
|
|
if (message) {
|
|
|
|
|
|
(message as any).files = result.dataList;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('加载消息文件失败:', error);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 发送消息
|
|
|
|
|
|
async function sendMessage() {
|
|
|
|
|
|
if (!canSend.value) return;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const message = inputMessage.value.trim();
|
|
|
|
|
|
if (!message) return;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
// 如果没有当前对话,创建新对话,使用第一个问题作为标题
|
|
|
|
|
|
const isFirstMessage = !currentConversation.value;
|
|
|
|
|
|
if (isFirstMessage) {
|
2025-11-06 16:43:28 +08:00
|
|
|
|
// 限制标题长度为20字符
|
|
|
|
|
|
const title = message.length > 20 ? message.substring(0, 20) + '...' : message;
|
|
|
|
|
|
const newConv = await createNewConversation(title);
|
|
|
|
|
|
if (!newConv) {
|
|
|
|
|
|
ElMessage.error('创建对话失败');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 添加用户消息到界面
|
|
|
|
|
|
const userMessage: AiMessage = {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
id: `temp-user-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`,
|
|
|
|
|
|
conversationID: currentConversation.value?.id || '',
|
2025-11-04 18:49:37 +08:00
|
|
|
|
role: 'user',
|
|
|
|
|
|
content: message,
|
|
|
|
|
|
createTime: new Date().toISOString(),
|
|
|
|
|
|
updateTime: new Date().toISOString()
|
|
|
|
|
|
};
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
messages.value.push(userMessage);
|
|
|
|
|
|
inputMessage.value = '';
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
await nextTick();
|
|
|
|
|
|
scrollToBottom();
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 调用API
|
|
|
|
|
|
isGenerating.value = true;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-06 19:08:20 +08:00
|
|
|
|
// 立即创建一个空的AI消息,用于显示加载动画
|
|
|
|
|
|
messages.value.push({
|
|
|
|
|
|
id: `temp-ai-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`,
|
|
|
|
|
|
conversationID: currentConversation.value?.id || '',
|
|
|
|
|
|
role: 'assistant',
|
|
|
|
|
|
content: '',
|
|
|
|
|
|
createTime: new Date().toISOString(),
|
|
|
|
|
|
updateTime: new Date().toISOString()
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
await nextTick();
|
|
|
|
|
|
scrollToBottom();
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
try {
|
|
|
|
|
|
let aiMessageContent = '';
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-06 16:43:28 +08:00
|
|
|
|
chatApi.streamChat({
|
2025-11-05 16:55:58 +08:00
|
|
|
|
agentId: agentConfig.value!.id!,
|
|
|
|
|
|
conversationId: currentConversation.value?.id || '',
|
|
|
|
|
|
query: message,
|
2025-11-06 16:43:28 +08:00
|
|
|
|
files: uploadedFiles.value.map(f => ({
|
|
|
|
|
|
id: f.id, // Dify文件ID
|
|
|
|
|
|
sys_file_id: f.sys_file_id, // 系统文件ID(用于保存关联记录)
|
|
|
|
|
|
file_path: f.file_path, // 文件路径(用于保存记录)
|
|
|
|
|
|
name: f.name,
|
|
|
|
|
|
size: f.size,
|
|
|
|
|
|
type: f.type,
|
|
|
|
|
|
transfer_method: f.transfer_method,
|
|
|
|
|
|
upload_file_id: f.upload_file_id
|
|
|
|
|
|
}))
|
2025-11-05 16:55:58 +08:00
|
|
|
|
},
|
2025-11-04 18:49:37 +08:00
|
|
|
|
{
|
2025-11-05 16:55:58 +08:00
|
|
|
|
onStart: (eventSource: EventSource) => {
|
|
|
|
|
|
// 保存EventSource引用,用于中止
|
|
|
|
|
|
currentEventSource.value = eventSource;
|
|
|
|
|
|
// 清空之前的数据
|
|
|
|
|
|
difyEventData.value = {};
|
|
|
|
|
|
currentTaskId.value = null;
|
|
|
|
|
|
currentMessageId.value = null;
|
|
|
|
|
|
},
|
|
|
|
|
|
onInit: (initData: { messageId: string; conversationId: string }) => {
|
|
|
|
|
|
// 保存AI消息的数据库ID(task_id),用于停止生成
|
|
|
|
|
|
currentMessageId.value = initData.messageId;
|
|
|
|
|
|
console.log('[保存MessageID(TaskID)]', initData.messageId);
|
2025-11-06 19:08:20 +08:00
|
|
|
|
|
|
|
|
|
|
// 更新最后一条AI消息的临时ID为真实的数据库ID
|
|
|
|
|
|
const lastMessage = messages.value[messages.value.length - 1];
|
|
|
|
|
|
if (lastMessage && lastMessage.role === 'assistant') {
|
|
|
|
|
|
lastMessage.id = initData.messageId;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
},
|
2025-11-04 18:49:37 +08:00
|
|
|
|
onMessage: (chunk: string) => {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
// 确保AI消息已创建(即使内容为空)
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const lastMessage = messages.value[messages.value.length - 1];
|
2025-11-05 16:55:58 +08:00
|
|
|
|
if (!lastMessage || lastMessage.role !== 'assistant') {
|
2025-11-04 18:49:37 +08:00
|
|
|
|
messages.value.push({
|
2025-11-05 16:55:58 +08:00
|
|
|
|
id: `temp-ai-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`,
|
2025-11-04 18:49:37 +08:00
|
|
|
|
conversationID: currentConversation.value!.id,
|
|
|
|
|
|
role: 'assistant',
|
2025-11-05 16:55:58 +08:00
|
|
|
|
content: '',
|
2025-11-04 18:49:37 +08:00
|
|
|
|
createTime: new Date().toISOString(),
|
|
|
|
|
|
updateTime: new Date().toISOString()
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
// 累加内容(包括空chunk,因为后端可能分块发送)
|
|
|
|
|
|
if (chunk) {
|
|
|
|
|
|
aiMessageContent += chunk;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 更新AI消息内容
|
|
|
|
|
|
const aiMessage = messages.value[messages.value.length - 1];
|
|
|
|
|
|
if (aiMessage && aiMessage.role === 'assistant') {
|
|
|
|
|
|
aiMessage.content = aiMessageContent;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
nextTick(() => scrollToBottom());
|
|
|
|
|
|
},
|
2025-11-05 16:55:58 +08:00
|
|
|
|
onDifyEvent: (eventType: string, eventData: any) => {
|
|
|
|
|
|
// 处理Dify原始事件(包含完整信息)
|
2025-11-06 16:43:28 +08:00
|
|
|
|
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
// 存储事件数据
|
|
|
|
|
|
difyEventData.value[eventType] = eventData;
|
|
|
|
|
|
|
|
|
|
|
|
// 特别处理workflow_started事件,提取task_id
|
|
|
|
|
|
if (eventType === 'workflow_started' && eventData.task_id) {
|
|
|
|
|
|
currentTaskId.value = eventData.task_id;
|
|
|
|
|
|
console.log('[Task ID]', eventData.task_id);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 可以根据需要处理其他事件类型
|
|
|
|
|
|
// 例如:node_started, node_finished, agent_thought等
|
|
|
|
|
|
},
|
2025-11-04 18:49:37 +08:00
|
|
|
|
onMessageEnd: () => {
|
|
|
|
|
|
isGenerating.value = false;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
currentEventSource.value = null;
|
|
|
|
|
|
currentTaskId.value = null;
|
|
|
|
|
|
currentMessageId.value = null;
|
2025-11-06 16:43:28 +08:00
|
|
|
|
// 清空已上传的文件列表(文件仅对一次消息发送生效)
|
|
|
|
|
|
uploadedFiles.value = [];
|
2025-11-04 18:49:37 +08:00
|
|
|
|
},
|
|
|
|
|
|
onError: (error: Error) => {
|
|
|
|
|
|
console.error('对话失败:', error);
|
|
|
|
|
|
ElMessage.error('对话失败,请重试');
|
|
|
|
|
|
isGenerating.value = false;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
currentEventSource.value = null;
|
|
|
|
|
|
currentTaskId.value = null;
|
|
|
|
|
|
currentMessageId.value = null;
|
2025-11-06 16:43:28 +08:00
|
|
|
|
// 发送失败也清空文件列表
|
|
|
|
|
|
uploadedFiles.value = [];
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
2025-11-06 16:43:28 +08:00
|
|
|
|
// 把文件放到message里面,转换为AiUploadFile格式
|
|
|
|
|
|
userMessage.files = uploadedFiles.value.map(f => ({
|
|
|
|
|
|
id: f.id,
|
|
|
|
|
|
sysFileId: f.sys_file_id,
|
|
|
|
|
|
fileName: f.name,
|
|
|
|
|
|
filePath: f.file_path,
|
|
|
|
|
|
fileSize: f.size,
|
|
|
|
|
|
fileType: f.type
|
|
|
|
|
|
} as AiUploadFile));
|
2025-11-04 18:49:37 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('发送消息失败:', error);
|
|
|
|
|
|
ElMessage.error('发送消息失败');
|
|
|
|
|
|
isGenerating.value = false;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
currentEventSource.value = null;
|
2025-11-06 16:43:28 +08:00
|
|
|
|
// 发送失败也清空文件列表
|
|
|
|
|
|
uploadedFiles.value = [];
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Shift+Enter 换行
|
|
|
|
|
|
function handleShiftEnter() {
|
|
|
|
|
|
// 允许默认行为(换行)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 是否可以发送
|
|
|
|
|
|
const canSend = computed(() => {
|
|
|
|
|
|
return inputMessage.value.trim().length > 0 && !isGenerating.value;
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 滚动到底部
|
|
|
|
|
|
function scrollToBottom() {
|
|
|
|
|
|
if (chatContentRef.value) {
|
|
|
|
|
|
chatContentRef.value.scrollTop = chatContentRef.value.scrollHeight;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-05 16:55:58 +08:00
|
|
|
|
// 停止生成
|
|
|
|
|
|
async function stopGenerating() {
|
|
|
|
|
|
// 优先使用 taskId,如果没有则使用 messageId
|
|
|
|
|
|
const taskIdToStop = currentTaskId.value || currentMessageId.value;
|
|
|
|
|
|
|
|
|
|
|
|
if (!taskIdToStop || !agentConfig.value?.id) {
|
|
|
|
|
|
ElMessage.warning('无法停止:缺少必要信息');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 只调用后端API停止Dify生成,不关闭EventSource
|
|
|
|
|
|
// EventSource会在收到Dify的停止/完成事件后自动关闭
|
|
|
|
|
|
const result = await chatApi.stopChatByTaskId(taskIdToStop, agentConfig.value.id);
|
|
|
|
|
|
|
|
|
|
|
|
if (result.success) {
|
|
|
|
|
|
ElMessage.success('正在停止生成...');
|
|
|
|
|
|
// 注意:不在这里关闭EventSource和清理状态
|
|
|
|
|
|
// 等待Dify发送complete/error事件,由onMessageEnd/onError处理
|
|
|
|
|
|
} else {
|
|
|
|
|
|
ElMessage.warning(result.message || '停止生成失败');
|
|
|
|
|
|
// 如果后端返回失败,手动清理状态
|
|
|
|
|
|
if (currentEventSource.value) {
|
|
|
|
|
|
currentEventSource.value.close();
|
|
|
|
|
|
currentEventSource.value = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
isGenerating.value = false;
|
|
|
|
|
|
currentTaskId.value = null;
|
|
|
|
|
|
currentMessageId.value = null;
|
|
|
|
|
|
difyEventData.value = {};
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('停止生成失败:', error);
|
|
|
|
|
|
ElMessage.error('停止生成失败');
|
|
|
|
|
|
|
|
|
|
|
|
// API调用失败时,手动清理状态
|
|
|
|
|
|
if (currentEventSource.value) {
|
|
|
|
|
|
currentEventSource.value.close();
|
|
|
|
|
|
currentEventSource.value = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
isGenerating.value = false;
|
|
|
|
|
|
currentTaskId.value = null;
|
|
|
|
|
|
currentMessageId.value = null;
|
|
|
|
|
|
difyEventData.value = {};
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 复制消息
|
|
|
|
|
|
async function copyMessage(content: string) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
await navigator.clipboard.writeText(content);
|
|
|
|
|
|
ElMessage.success('已复制到剪贴板');
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
ElMessage.error('复制失败');
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 重新生成消息
|
|
|
|
|
|
async function regenerateMessage(messageId: string) {
|
|
|
|
|
|
if (isGenerating.value) return;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
// 清空原有AI消息内容
|
|
|
|
|
|
const messageIndex = messages.value.findIndex(m => m.id === messageId);
|
|
|
|
|
|
if (messageIndex === -1) {
|
|
|
|
|
|
ElMessage.error('消息不存在');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-11-04 18:49:37 +08:00
|
|
|
|
|
2025-11-05 16:55:58 +08:00
|
|
|
|
// 清空内容,准备重新生成
|
|
|
|
|
|
messages.value[messageIndex].content = '';
|
2025-11-04 18:49:37 +08:00
|
|
|
|
|
2025-11-05 16:55:58 +08:00
|
|
|
|
isGenerating.value = true;
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
try {
|
|
|
|
|
|
let aiMessageContent = '';
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
await chatApi.regenerateAnswer(
|
|
|
|
|
|
messageId,
|
|
|
|
|
|
{
|
2025-11-05 16:55:58 +08:00
|
|
|
|
onStart: (eventSource: EventSource) => {
|
|
|
|
|
|
// 保存EventSource引用,用于中止
|
|
|
|
|
|
currentEventSource.value = eventSource;
|
|
|
|
|
|
// 清空之前的数据
|
|
|
|
|
|
difyEventData.value = {};
|
|
|
|
|
|
currentTaskId.value = null;
|
|
|
|
|
|
currentMessageId.value = null;
|
|
|
|
|
|
},
|
|
|
|
|
|
onInit: (initData: { messageId: string; conversationId: string }) => {
|
|
|
|
|
|
// 保存AI消息的数据库ID(task_id),用于停止生成
|
|
|
|
|
|
currentMessageId.value = initData.messageId;
|
|
|
|
|
|
console.log('[保存MessageID(TaskID)-重新生成]', initData.messageId);
|
2025-11-06 19:08:20 +08:00
|
|
|
|
|
|
|
|
|
|
// 如果后端返回了新的messageId,更新消息对象的ID
|
|
|
|
|
|
if (initData.messageId !== messageId) {
|
|
|
|
|
|
messages.value[messageIndex].id = initData.messageId;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
},
|
2025-11-04 18:49:37 +08:00
|
|
|
|
onMessage: (chunk: string) => {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
// 累加内容(包括空chunk,因为后端可能分块发送)
|
|
|
|
|
|
if (chunk) {
|
|
|
|
|
|
aiMessageContent += chunk;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-06 19:08:20 +08:00
|
|
|
|
// 直接使用messageIndex更新消息内容
|
|
|
|
|
|
if (messageIndex !== -1) {
|
|
|
|
|
|
messages.value[messageIndex].content = aiMessageContent;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
nextTick(() => scrollToBottom());
|
|
|
|
|
|
},
|
2025-11-05 16:55:58 +08:00
|
|
|
|
onDifyEvent: (eventType: string, eventData: any) => {
|
|
|
|
|
|
|
|
|
|
|
|
// 存储事件数据
|
|
|
|
|
|
difyEventData.value[eventType] = eventData;
|
|
|
|
|
|
|
|
|
|
|
|
// 特别处理workflow_started事件,提取task_id
|
|
|
|
|
|
if (eventType === 'workflow_started' && eventData.task_id) {
|
|
|
|
|
|
currentTaskId.value = eventData.task_id;
|
|
|
|
|
|
console.log('[Task ID-重新生成]', eventData.task_id);
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-11-04 18:49:37 +08:00
|
|
|
|
onMessageEnd: () => {
|
|
|
|
|
|
isGenerating.value = false;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
currentEventSource.value = null;
|
|
|
|
|
|
currentTaskId.value = null;
|
|
|
|
|
|
currentMessageId.value = null;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
},
|
|
|
|
|
|
onError: (error: Error) => {
|
|
|
|
|
|
console.error('重新生成失败:', error);
|
|
|
|
|
|
ElMessage.error('重新生成失败');
|
|
|
|
|
|
isGenerating.value = false;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
currentEventSource.value = null;
|
|
|
|
|
|
currentTaskId.value = null;
|
|
|
|
|
|
currentMessageId.value = null;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('重新生成失败:', error);
|
|
|
|
|
|
ElMessage.error('重新生成失败');
|
|
|
|
|
|
isGenerating.value = false;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
currentEventSource.value = null;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 评价消息
|
|
|
|
|
|
async function rateMessage(messageId: string, rating: number) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const message = messages.value.find(m => m.id === messageId);
|
|
|
|
|
|
if (!message) return;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 如果已经评价相同,则取消评价
|
|
|
|
|
|
const newRating = message.rating === rating ? 0 : rating;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const result = await chatApi.rateMessage(messageId, newRating);
|
|
|
|
|
|
if (result.success) {
|
|
|
|
|
|
message.rating = newRating;
|
|
|
|
|
|
ElMessage.success(newRating === 0 ? '已取消评价' : '评价成功');
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('评价失败:', error);
|
|
|
|
|
|
ElMessage.error('评价失败');
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ===== 文件上传相关 =====
|
2025-11-06 16:43:28 +08:00
|
|
|
|
interface DifyFile {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
size: number;
|
|
|
|
|
|
type: string;
|
|
|
|
|
|
transfer_method: string;
|
|
|
|
|
|
upload_file_id: string;
|
|
|
|
|
|
localFile?: File; // 保留原始File对象用于显示
|
|
|
|
|
|
sys_file_id: string;
|
|
|
|
|
|
file_path: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const uploadedFiles = ref<DifyFile[]>([]);
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const fileInputRef = ref<HTMLInputElement | null>(null);
|
2025-11-06 16:43:28 +08:00
|
|
|
|
const isUploading = ref(false);
|
2025-11-04 18:49:37 +08:00
|
|
|
|
|
|
|
|
|
|
function triggerFileUpload() {
|
|
|
|
|
|
fileInputRef.value?.click();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-06 16:43:28 +08:00
|
|
|
|
async function handleFileUpload(e: Event) {
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const target = e.target as HTMLInputElement;
|
|
|
|
|
|
const files = target.files;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-06 16:43:28 +08:00
|
|
|
|
if (!files || files.length === 0) return;
|
|
|
|
|
|
if (!agentConfig.value?.id) {
|
|
|
|
|
|
ElMessage.error('智能体未加载');
|
|
|
|
|
|
return;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-06 16:43:28 +08:00
|
|
|
|
isUploading.value = true;
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 逐个上传文件到Dify
|
|
|
|
|
|
for (const file of Array.from(files)) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const result = await fileUploadApi.uploadFileForChat(file, agentConfig.value.id);
|
|
|
|
|
|
|
|
|
|
|
|
if (result.success && result.data) {
|
|
|
|
|
|
// 保存Dify返回的文件信息
|
|
|
|
|
|
uploadedFiles.value.push({
|
|
|
|
|
|
...result.data as DifyFile,
|
|
|
|
|
|
localFile: file // 保留原始文件用于显示
|
|
|
|
|
|
});
|
|
|
|
|
|
ElMessage.success(`${file.name} 上传成功`);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
ElMessage.error(`${file.name} 上传失败: ${result.message}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error(`上传文件失败: ${file.name}`, error);
|
|
|
|
|
|
ElMessage.error(`${file.name} 上传失败`);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
isUploading.value = false;
|
|
|
|
|
|
// 清空input,允许重复选择同一文件
|
|
|
|
|
|
target.value = '';
|
|
|
|
|
|
}
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function removeUploadedFile(index: number) {
|
|
|
|
|
|
uploadedFiles.value.splice(index, 1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ===== 工具函数 =====
|
|
|
|
|
|
function formatTime(dateStr: string | undefined) {
|
|
|
|
|
|
if (!dateStr) return '';
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const date = new Date(dateStr);
|
|
|
|
|
|
const now = new Date();
|
|
|
|
|
|
const diff = now.getTime() - date.getTime();
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const minutes = Math.floor(diff / 60000);
|
|
|
|
|
|
const hours = Math.floor(diff / 3600000);
|
|
|
|
|
|
const days = Math.floor(diff / 86400000);
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
if (minutes < 1) return '刚刚';
|
|
|
|
|
|
if (minutes < 60) return `${minutes}分钟前`;
|
|
|
|
|
|
if (hours < 24) return `${hours}小时前`;
|
|
|
|
|
|
if (days < 7) return `${days}天前`;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
return date.toLocaleDateString();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function formatMessageTime(dateStr: string | undefined) {
|
|
|
|
|
|
if (!dateStr) return '';
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
const date = new Date(dateStr);
|
|
|
|
|
|
return date.toLocaleTimeString('zh-CN', { hour: '2-digit', minute: '2-digit' });
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-06 16:43:28 +08:00
|
|
|
|
// 格式化文件大小
|
|
|
|
|
|
function formatFileSize(bytes: number | undefined): string {
|
|
|
|
|
|
if (!bytes) return '0 B';
|
|
|
|
|
|
const k = 1024;
|
|
|
|
|
|
const sizes = ['B', 'KB', 'MB', 'GB'];
|
|
|
|
|
|
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
|
|
|
|
return (bytes / Math.pow(k, i)).toFixed(2) + ' ' + sizes[i];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
function formatMarkdown(content: string) {
|
|
|
|
|
|
// 简单的 Markdown 转换(可以使用 marked.js 等库进行更复杂的转换)
|
|
|
|
|
|
let html = content;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 代码块
|
|
|
|
|
|
html = html.replace(/```(\w+)?\n([\s\S]*?)```/g, '<pre><code>$2</code></pre>');
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 行内代码
|
|
|
|
|
|
html = html.replace(/`([^`]+)`/g, '<code>$1</code>');
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 加粗
|
|
|
|
|
|
html = html.replace(/\*\*([^*]+)\*\*/g, '<strong>$1</strong>');
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 斜体
|
|
|
|
|
|
html = html.replace(/\*([^*]+)\*/g, '<em>$1</em>');
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
// 换行
|
|
|
|
|
|
html = html.replace(/\n/g, '<br>');
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
return html;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 清理
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
|
|
document.removeEventListener('mousemove', onDrag);
|
|
|
|
|
|
document.removeEventListener('touchmove', onDrag);
|
|
|
|
|
|
document.removeEventListener('mouseup', stopDrag);
|
|
|
|
|
|
document.removeEventListener('touchend', stopDrag);
|
|
|
|
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
.ai-agent {
|
|
|
|
|
|
position: fixed;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
z-index: 50;
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&.expanded {
|
|
|
|
|
|
top: 50%;
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
|
width: 90vw;
|
|
|
|
|
|
height: 80vh;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ===== 悬浮球样式 ===== */
|
|
|
|
|
|
.ball-container {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat-ball {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
width: 40px;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
cursor: pointer;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
transition: transform 0.3s ease;
|
|
|
|
|
|
user-select: none;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
transform: scale(1.1);
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:active {
|
|
|
|
|
|
transform: scale(0.95);
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.ball-icon {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.unread-badge {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
background: #E7000B;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
width: 24px;
|
|
|
|
|
|
height: 24px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ===== 展开的对话界面 ===== */
|
|
|
|
|
|
.ai-agent-content {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
background-color: #fff;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
border-radius: 16px;
|
|
|
|
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ===== 左侧对话历史 ===== */
|
|
|
|
|
|
.ai-agent-history {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
width: 240px;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
background: #F9FAFB;
|
|
|
|
|
|
border-right: 1px solid #E5E7EB;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
transition: width 0.3s ease;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&.collapsed {
|
|
|
|
|
|
width: 60px;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.history-header {
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
border-bottom: 1px solid #E5E7EB;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
h3 {
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: #101828;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.collapse-btn {
|
|
|
|
|
|
background: none;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-size: 12px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
color: #6B7240;
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
color: #E7000B;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.history-list {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
padding: 12px;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.new-chat-btn {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
padding: 12px;
|
|
|
|
|
|
background: #E7000B;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
margin-bottom: 12px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
background: #C90009;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.conversation-item {
|
|
|
|
|
|
padding: 12px;
|
|
|
|
|
|
background: white;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
transition: all 0.2s;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
background: #EFF6FF;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.delete-conv-btn {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&.active {
|
|
|
|
|
|
background: #E7000B;
|
|
|
|
|
|
color: white;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.conv-title,
|
|
|
|
|
|
.conv-time {
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.conv-title {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: #101828;
|
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.conv-time {
|
|
|
|
|
|
font-size: 12px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
color: #6B7240;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.delete-conv-btn {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 8px;
|
|
|
|
|
|
right: 8px;
|
|
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
width: 20px;
|
|
|
|
|
|
height: 20px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transition: opacity 0.2s;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.load-more {
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
padding: 12px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
button {
|
|
|
|
|
|
background: none;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
color: #E7000B;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-size: 14px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-05 16:55:58 +08:00
|
|
|
|
.avatar-circle {
|
|
|
|
|
|
width: 36px;
|
|
|
|
|
|
height: 36px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: #E5E7EB;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
|
|
&.ai-avatar {
|
|
|
|
|
|
background: #EFF6FF;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ai-avatar-img {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
/* ===== 右侧当前对话 ===== */
|
|
|
|
|
|
.ai-agent-current-chat {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.current-chat-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 20px 24px;
|
|
|
|
|
|
border-bottom: 1px solid #E5E7EB;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.current-chat-title {
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: #101828;
|
|
|
|
|
|
flex: 1;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.title-input {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
border: 1px solid #E5E7EB;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
font-weight: 600;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:focus {
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
border-color: #E7000B;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
span {
|
|
|
|
|
|
cursor: text;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
color: #E7000B;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.current-chat-action {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 8px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.action-btn {
|
|
|
|
|
|
width: 32px;
|
|
|
|
|
|
height: 32px;
|
|
|
|
|
|
background: none;
|
|
|
|
|
|
border: 1px solid #E5E7EB;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
background: #F3F4F6;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.icon {
|
|
|
|
|
|
width: 18px;
|
|
|
|
|
|
height: 18px;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
span {
|
|
|
|
|
|
font-size: 20px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
color: #6B7240;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.current-chat-content {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
padding: 24px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.welcome-message {
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
padding: 60px 20px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.welcome-icon {
|
|
|
|
|
|
font-size: 64px;
|
|
|
|
|
|
margin-bottom: 16px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
.welcome-avatar {
|
|
|
|
|
|
width: 80px;
|
|
|
|
|
|
height: 80px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
}
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
h2 {
|
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: #101828;
|
|
|
|
|
|
margin: 0 0 8px 0;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
p {
|
|
|
|
|
|
font-size: 16px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
color: #6B7240;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
margin: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.message-item {
|
|
|
|
|
|
margin-bottom: 24px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.message {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 12px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.message-avatar {
|
|
|
|
|
|
flex-shrink: 0;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.message-content {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
max-width: 70%;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.message-text {
|
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
word-wrap: break-word;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
// 图片样式约束
|
|
|
|
|
|
:deep(img) {
|
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
max-height: 400px;
|
|
|
|
|
|
height: auto;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
margin: 8px 0;
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
:deep(code) {
|
|
|
|
|
|
background: #F3F4F6;
|
|
|
|
|
|
padding: 2px 6px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
font-family: 'Courier New', monospace;
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
:deep(pre) {
|
|
|
|
|
|
background: #1F2937;
|
|
|
|
|
|
color: #F9FAFB;
|
|
|
|
|
|
padding: 12px;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
overflow-x: auto;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
code {
|
|
|
|
|
|
background: none;
|
|
|
|
|
|
color: inherit;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.message-time {
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
color: #9CA3AF;
|
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.message-footer {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
margin-top: 4px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.message-actions {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 4px;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transition: opacity 0.2s;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.msg-action-btn {
|
|
|
|
|
|
background: none;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
padding: 4px;
|
|
|
|
|
|
opacity: 0.6;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&.active {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover .message-actions {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
// 用户消息靠右(头像在右侧)
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.user-message {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.message-content {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.message-text {
|
|
|
|
|
|
background: #E7000B;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
// AI消息靠左(头像在左侧,默认布局)
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.ai-message {
|
|
|
|
|
|
.message-content {
|
|
|
|
|
|
.message-text {
|
|
|
|
|
|
background: #F9FAFB;
|
|
|
|
|
|
color: #101828;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.generating {
|
|
|
|
|
|
.typing-indicator {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 4px;
|
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
|
background: #F9FAFB;
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
width: fit-content;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
span {
|
|
|
|
|
|
width: 8px;
|
|
|
|
|
|
height: 8px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: #9CA3AF;
|
|
|
|
|
|
animation: typing 1.4s infinite;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:nth-child(2) {
|
|
|
|
|
|
animation-delay: 0.2s;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:nth-child(3) {
|
|
|
|
|
|
animation-delay: 0.4s;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-06 16:43:28 +08:00
|
|
|
|
|
|
|
|
|
|
// 内联加载动画(在消息内容下方显示)
|
|
|
|
|
|
.typing-indicator-inline {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 4px;
|
|
|
|
|
|
padding: 8px 0;
|
|
|
|
|
|
width: fit-content;
|
|
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
|
width: 6px;
|
|
|
|
|
|
height: 6px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: #9CA3AF;
|
|
|
|
|
|
animation: typing 1.4s infinite;
|
|
|
|
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
|
|
animation-delay: 0.2s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:nth-child(3) {
|
|
|
|
|
|
animation-delay: 0.4s;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-04 18:49:37 +08:00
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.current-chat-input {
|
|
|
|
|
|
border-top: 1px solid #E5E7EB;
|
|
|
|
|
|
padding: 16px 24px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.input-files {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
margin-bottom: 12px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.uploaded-file-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
|
background: #F3F4F6;
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
font-size: 13px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.file-name {
|
|
|
|
|
|
color: #374151;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.remove-file-btn {
|
|
|
|
|
|
background: none;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
color: #9CA3AF;
|
|
|
|
|
|
font-size: 18px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
color: #E7000B;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-06 16:43:28 +08:00
|
|
|
|
.message-files {
|
2025-11-08 10:56:32 +08:00
|
|
|
|
margin-top: 12px;
|
2025-11-06 16:43:28 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2025-11-08 10:56:32 +08:00
|
|
|
|
gap: 8px;
|
2025-11-06 16:43:28 +08:00
|
|
|
|
|
|
|
|
|
|
.message-file-item {
|
|
|
|
|
|
.file-link {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2025-11-08 10:56:32 +08:00
|
|
|
|
gap: 10px;
|
|
|
|
|
|
padding: 10px 14px;
|
|
|
|
|
|
background: rgba(255, 255, 255, 0.15);
|
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.25);
|
|
|
|
|
|
border-radius: 8px;
|
2025-11-06 16:43:28 +08:00
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
color: inherit;
|
2025-11-08 10:56:32 +08:00
|
|
|
|
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
2025-11-06 16:43:28 +08:00
|
|
|
|
font-size: 13px;
|
2025-11-08 10:56:32 +08:00
|
|
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
2025-11-06 16:43:28 +08:00
|
|
|
|
|
|
|
|
|
|
&:hover {
|
2025-11-08 10:56:32 +08:00
|
|
|
|
background: rgba(255, 255, 255, 0.25);
|
|
|
|
|
|
border-color: rgba(255, 255, 255, 0.4);
|
|
|
|
|
|
transform: translateX(3px);
|
|
|
|
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:active {
|
2025-11-06 16:43:28 +08:00
|
|
|
|
transform: translateX(2px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.file-icon {
|
2025-11-08 10:56:32 +08:00
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
|
2025-11-06 16:43:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.file-name {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
2025-11-08 10:56:32 +08:00
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
letter-spacing: 0.01em;
|
2025-11-06 16:43:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.file-size {
|
2025-11-08 10:56:32 +08:00
|
|
|
|
opacity: 0.8;
|
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
padding-left: 8px;
|
|
|
|
|
|
border-left: 1px solid rgba(255, 255, 255, 0.2);
|
2025-11-06 16:43:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.input-area {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
align-items: flex-end;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.input-text {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
|
border: 1px solid #E5E7EB;
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
resize: none;
|
|
|
|
|
|
max-height: 120px;
|
|
|
|
|
|
font-family: inherit;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:focus {
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
border-color: #E7000B;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&::placeholder {
|
|
|
|
|
|
color: #9CA3AF;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.input-action {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 8px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.action-icon-btn {
|
|
|
|
|
|
width: 40px;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
background: #F9FAFB;
|
|
|
|
|
|
border: 1px solid #E5E7EB;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
border-radius: 10px;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
cursor: pointer;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
display: flex;
|
2025-11-04 18:49:37 +08:00
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
transition: all 0.2s;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover:not(:disabled) {
|
|
|
|
|
|
background: #F3F4F6;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:disabled {
|
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&.send-btn {
|
|
|
|
|
|
background: #E7000B;
|
|
|
|
|
|
border-color: #E7000B;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover:not(:disabled) {
|
|
|
|
|
|
background: #C90009;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
&.stop-btn {
|
|
|
|
|
|
background: #FEF2F2;
|
|
|
|
|
|
border-color: #FCA5A5;
|
|
|
|
|
|
|
|
|
|
|
|
.stop-icon {
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
color: #DC2626;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
background: #FEE2E2;
|
|
|
|
|
|
border-color: #F87171;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
.link-icon,
|
|
|
|
|
|
.send-icon {
|
|
|
|
|
|
width: 20px;
|
|
|
|
|
|
height: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes typing {
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
0%,
|
|
|
|
|
|
60%,
|
|
|
|
|
|
100% {
|
2025-11-04 18:49:37 +08:00
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
30% {
|
|
|
|
|
|
transform: translateY(-8px);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 滚动条样式 */
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
|
width: 6px;
|
|
|
|
|
|
height: 6px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
|
background: transparent;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
|
background: #D1D5DB;
|
|
|
|
|
|
border-radius: 3px;
|
2025-11-05 16:55:58 +08:00
|
|
|
|
|
2025-11-04 18:49:37 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
background: #9CA3AF;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|