2024-04-04 19:28:18 +08:00
|
|
|
|
<script setup>
|
2025-02-02 00:22:27 +08:00
|
|
|
|
import {nextTick, onMounted, ref, computed, onUnmounted} from 'vue';
|
|
|
|
|
|
import {storeToRefs} from 'pinia'
|
2024-04-07 16:35:21 +08:00
|
|
|
|
import useAuths from '@/hooks/useAuths.js';
|
2025-02-02 00:22:27 +08:00
|
|
|
|
import {getList as getChatUserList} from '@/apis/chatUserApi'
|
|
|
|
|
|
import {
|
|
|
|
|
|
sendPersonalMessage,
|
|
|
|
|
|
sendGroupMessage,
|
|
|
|
|
|
getAccountList as getChatAccountMessageList,
|
|
|
|
|
|
sendAiChat
|
|
|
|
|
|
} from '@/apis/chatMessageApi'
|
2024-04-04 19:28:18 +08:00
|
|
|
|
import useChatStore from "@/stores/chat";
|
2024-04-06 18:28:32 +08:00
|
|
|
|
import useUserStore from "@/stores/user";
|
2025-02-02 00:22:27 +08:00
|
|
|
|
|
|
|
|
|
|
const {isLogin} = useAuths();
|
|
|
|
|
|
import {useRouter} from 'vue-router'
|
|
|
|
|
|
import {getUrl} from '@/utils/icon'
|
2024-07-21 23:13:27 +08:00
|
|
|
|
|
|
|
|
|
|
//markdown ai显示
|
2025-02-02 00:22:27 +08:00
|
|
|
|
import {marked} from 'marked';
|
2025-02-12 22:25:15 +08:00
|
|
|
|
import markedKatex from "marked-katex-extension";
|
2024-07-21 23:13:27 +08:00
|
|
|
|
import '@/assets/atom-one-dark.css';
|
|
|
|
|
|
import '@/assets/github-markdown.css';
|
|
|
|
|
|
import hljs from "highlight.js";
|
|
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
const isShowTipNumber = ref(10);
|
2024-04-07 16:35:21 +08:00
|
|
|
|
const router = useRouter();
|
2024-04-06 18:28:32 +08:00
|
|
|
|
//聊天存储
|
|
|
|
|
|
const chatStore = useChatStore();
|
2025-02-02 00:22:27 +08:00
|
|
|
|
const {userList} = storeToRefs(chatStore);
|
2024-04-06 18:28:32 +08:00
|
|
|
|
|
|
|
|
|
|
//用户信息
|
|
|
|
|
|
const userStore = useUserStore();
|
|
|
|
|
|
//发送消息是否为空
|
2024-04-07 16:35:21 +08:00
|
|
|
|
const msgIsNullShow = ref(false)
|
2024-04-06 18:28:32 +08:00
|
|
|
|
//当前选择用户
|
2024-07-21 13:37:56 +08:00
|
|
|
|
const currentSelectUser = ref('all');
|
2024-04-06 18:28:32 +08:00
|
|
|
|
//当前输入框的值
|
|
|
|
|
|
const currentInputValue = ref("");
|
|
|
|
|
|
//临时存储的输入框,根据用户id及组name、all组为key,data为value
|
2025-02-02 00:22:27 +08:00
|
|
|
|
const inputListDataStore = ref([
|
2025-02-03 01:18:15 +08:00
|
|
|
|
{key: "all", name: "官方学习交流群", titleName: "官方学习交流群", logo: "yilogo.png", value: ""},
|
2025-02-25 15:09:17 +08:00
|
|
|
|
|
|
|
|
|
|
{key: "ai@gpt-4o-mini", name: "ChatGpt聊天", titleName: "ChatGpt-全能神!综合能力最强!", logo: "openAi.png", value: ""},
|
|
|
|
|
|
|
2025-05-01 15:58:43 +08:00
|
|
|
|
{key: "ai@claude-3-7-sonnet", name: "Claude聊天", titleName: "Claude3.7 代码逻辑地表最强!", logo: "claudeAi.png", value: ""},
|
|
|
|
|
|
{key: "ai@claude-3.7-sonnet-thinking", name: "Claude思索", titleName: "Claude3.7 思索模式,强中强!", logo: "claudeAi.png", value: ""},
|
2025-03-21 18:25:22 +08:00
|
|
|
|
|
2025-05-01 15:58:43 +08:00
|
|
|
|
{key: "ai@grok-3", name: "Grok聊天", titleName: "Grok3 为3.0王的诞生献上礼炮", logo: "grokAi.png", value: ""},
|
2025-02-25 15:09:17 +08:00
|
|
|
|
|
2025-05-01 15:58:43 +08:00
|
|
|
|
{key: "ai@Qwen/QwQ-32B-Preview", name: "QWen聊天", titleName: "国产阿里千问通义", logo: "qwenAi.png", value: ""},
|
2025-02-25 15:09:17 +08:00
|
|
|
|
|
2025-03-21 18:25:22 +08:00
|
|
|
|
{key: "ai@DeepSeek-V3", name: "DeepSeek聊天", titleName: "满血DeepSeek-聊天模式,开源模型第一", logo: "deepSeekAi.png", value: ""},
|
2025-05-01 15:58:43 +08:00
|
|
|
|
{key: "ai@DeepSeek-R1", name: "DeepSeek思索", titleName: "满血DeepSeek-思索模式", logo: "deepSeekAi.png", value: ""}
|
2025-02-02 00:22:27 +08:00
|
|
|
|
]);
|
2024-07-21 13:37:56 +08:00
|
|
|
|
//AI聊天临时存储
|
|
|
|
|
|
const sendAiChatContext = ref([]);
|
2025-02-02 00:22:27 +08:00
|
|
|
|
var timer = null;
|
2024-04-06 18:28:32 +08:00
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
let codeCopyDic = [];
|
|
|
|
|
|
|
2025-05-01 15:58:43 +08:00
|
|
|
|
// 添加可调整大小的变量
|
|
|
|
|
|
const middleWidth = ref(380);
|
|
|
|
|
|
const contentHeight = ref(535);
|
|
|
|
|
|
const isDraggingVertical = ref(false);
|
|
|
|
|
|
const isDraggingHorizontal = ref(false);
|
|
|
|
|
|
const startX = ref(0);
|
|
|
|
|
|
const startY = ref(0);
|
|
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
//初始化
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
|
if (!isLogin.value) {
|
|
|
|
|
|
ElMessage({
|
|
|
|
|
|
message: '该功能,请登录后使用!即将自动跳转',
|
|
|
|
|
|
type: 'warning',
|
|
|
|
|
|
})
|
|
|
|
|
|
timer = setTimeout(function () {
|
|
|
|
|
|
onclickClose();
|
|
|
|
|
|
}, 3000);
|
|
|
|
|
|
}
|
2025-02-12 22:25:15 +08:00
|
|
|
|
marked.use(markedKatex({
|
|
|
|
|
|
throwOnError: false,
|
|
|
|
|
|
nonStandard: true
|
|
|
|
|
|
}));
|
|
|
|
|
|
marked.setOptions({
|
|
|
|
|
|
renderer: new marked.Renderer(),
|
|
|
|
|
|
highlight: function (code, language) {
|
|
|
|
|
|
return codeHandler(code, language);
|
|
|
|
|
|
},
|
|
|
|
|
|
pedantic: false,
|
|
|
|
|
|
gfm: true,//允许 Git Hub标准的markdown
|
|
|
|
|
|
tables: true,//支持表格
|
|
|
|
|
|
breaks: true,
|
|
|
|
|
|
sanitize: false,
|
|
|
|
|
|
smartypants: false,
|
|
|
|
|
|
xhtml: false,
|
|
|
|
|
|
smartLists: true,
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
2025-02-03 01:18:15 +08:00
|
|
|
|
//all的聊天消息
|
2025-02-02 00:22:27 +08:00
|
|
|
|
chatStore.setMsgList((await getChatAccountMessageList()).data);
|
2025-02-03 01:18:15 +08:00
|
|
|
|
//在线用户列表
|
2025-02-02 00:22:27 +08:00
|
|
|
|
chatStore.setUserList((await getChatUserList()).data);
|
|
|
|
|
|
startCountTip();
|
2025-05-01 15:58:43 +08:00
|
|
|
|
|
|
|
|
|
|
// 添加全局鼠标事件监听
|
|
|
|
|
|
document.addEventListener('mousemove', handleMouseMove);
|
|
|
|
|
|
document.addEventListener('mouseup', handleMouseUp);
|
2025-02-02 00:22:27 +08:00
|
|
|
|
})
|
2025-05-01 15:58:43 +08:00
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
onUnmounted(() => {
|
|
|
|
|
|
if (timer != null) {
|
|
|
|
|
|
clearInterval(timer)
|
|
|
|
|
|
}
|
|
|
|
|
|
if (timerTip != null) {
|
|
|
|
|
|
clearInterval(timerTip)
|
|
|
|
|
|
}
|
2025-05-01 15:58:43 +08:00
|
|
|
|
|
|
|
|
|
|
// 移除全局鼠标事件监听
|
|
|
|
|
|
document.removeEventListener('mousemove', handleMouseMove);
|
|
|
|
|
|
document.removeEventListener('mouseup', handleMouseUp);
|
2025-02-02 00:22:27 +08:00
|
|
|
|
})
|
2024-10-04 00:37:36 +08:00
|
|
|
|
|
2025-05-01 15:58:43 +08:00
|
|
|
|
// 开始垂直拖拽(左右分割线)
|
|
|
|
|
|
const startDragVertical = (e) => {
|
|
|
|
|
|
isDraggingVertical.value = true;
|
|
|
|
|
|
startX.value = e.clientX;
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 开始水平拖拽(上下分割线)
|
|
|
|
|
|
const startDragHorizontal = (e) => {
|
|
|
|
|
|
isDraggingHorizontal.value = true;
|
|
|
|
|
|
startY.value = e.clientY;
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 处理鼠标移动事件
|
|
|
|
|
|
const handleMouseMove = (e) => {
|
|
|
|
|
|
if (isDraggingVertical.value) {
|
|
|
|
|
|
const deltaX = e.clientX - startX.value;
|
|
|
|
|
|
const newWidth = middleWidth.value + deltaX;
|
|
|
|
|
|
|
|
|
|
|
|
// 限制最小宽度和最大宽度
|
|
|
|
|
|
if (newWidth >= 250 && newWidth <= 500) {
|
|
|
|
|
|
middleWidth.value = newWidth;
|
|
|
|
|
|
startX.value = e.clientX;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (isDraggingHorizontal.value) {
|
|
|
|
|
|
const deltaY = e.clientY - startY.value;
|
|
|
|
|
|
const newHeight = contentHeight.value + deltaY;
|
|
|
|
|
|
|
|
|
|
|
|
// 限制最小高度和最大高度
|
|
|
|
|
|
if (newHeight >= 300 && newHeight <= 600) {
|
|
|
|
|
|
contentHeight.value = newHeight;
|
|
|
|
|
|
startY.value = e.clientY;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 处理鼠标松开事件
|
|
|
|
|
|
const handleMouseUp = () => {
|
|
|
|
|
|
isDraggingVertical.value = false;
|
|
|
|
|
|
isDraggingHorizontal.value = false;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
/*-----计算属性-----*/
|
|
|
|
|
|
//当前聊天框内容显示的消息
|
|
|
|
|
|
const currentMsgContext = computed(() => {
|
|
|
|
|
|
//选择全部人
|
2024-04-06 18:28:32 +08:00
|
|
|
|
if (selectIsAll()) {
|
|
|
|
|
|
return chatStore.allMsgContext;
|
|
|
|
|
|
}
|
2025-02-02 00:22:27 +08:00
|
|
|
|
//选择ai
|
2024-07-21 23:44:13 +08:00
|
|
|
|
else if (selectIsAi()) {
|
2024-07-21 23:13:27 +08:00
|
|
|
|
//如果是ai的值,还行经过markdown处理
|
|
|
|
|
|
let tempHtml = [];
|
2025-02-02 00:22:27 +08:00
|
|
|
|
codeCopyDic = [];
|
2025-02-03 01:18:15 +08:00
|
|
|
|
chatStore.getMsgContextFunc(currentSelectUser.value).forEach(element => {
|
2025-02-02 00:22:27 +08:00
|
|
|
|
tempHtml.push({
|
|
|
|
|
|
content: toMarkDownHtml(element.content),
|
|
|
|
|
|
messageType: 'Ai',
|
|
|
|
|
|
sendUserId: element.sendUserId,
|
|
|
|
|
|
sendUserInfo: element.sendUserInfo
|
|
|
|
|
|
});
|
2024-07-21 23:13:27 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
return tempHtml;
|
2024-07-21 13:37:56 +08:00
|
|
|
|
}
|
2025-02-02 00:22:27 +08:00
|
|
|
|
//选择个人
|
2024-04-06 18:28:32 +08:00
|
|
|
|
else {
|
|
|
|
|
|
return chatStore.personalMsgContext.filter(x => {
|
|
|
|
|
|
//两个条件
|
|
|
|
|
|
//接收用户者id为对面id(我发给他)
|
|
|
|
|
|
//或者,发送用户id为对面(他发给我)
|
2025-02-02 00:22:27 +08:00
|
|
|
|
return (x.receiveId === currentSelectUser.value.userId && x.sendUserId === userStore.id) ||
|
|
|
|
|
|
(x.sendUserId === currentSelectUser.value.userId && x.receiveId === userStore.id);
|
2024-04-06 18:28:32 +08:00
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2025-02-03 01:18:15 +08:00
|
|
|
|
//获取聊天内容的头像
|
2024-07-21 23:13:27 +08:00
|
|
|
|
const getChatUrl = (url, position) => {
|
2025-02-12 22:25:15 +08:00
|
|
|
|
if (position === "left" && selectIsAi()) {
|
2025-02-25 15:09:17 +08:00
|
|
|
|
return imageSrc(inputListDataStore.value.find(x => x.key === currentSelectUser.value).logo)
|
2024-07-21 13:37:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
return getUrl(url);
|
|
|
|
|
|
}
|
2024-04-06 18:28:32 +08:00
|
|
|
|
//当前聊天框显示的名称
|
|
|
|
|
|
const currentHeaderName = computed(() => {
|
2025-02-25 15:09:17 +08:00
|
|
|
|
if (selectIsAll() || selectIsAi()) {
|
|
|
|
|
|
return inputListDataStore.value.find(x => x.key === currentSelectUser.value).titleName;
|
2025-02-02 00:22:27 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
return currentSelectUser.value.userName;
|
2024-07-21 13:37:56 +08:00
|
|
|
|
}
|
2024-04-06 18:28:32 +08:00
|
|
|
|
});
|
2025-02-02 00:22:27 +08:00
|
|
|
|
//当前在线的用户项
|
2024-04-06 18:28:32 +08:00
|
|
|
|
const currentUserItem = computed(() => {
|
2025-02-02 00:22:27 +08:00
|
|
|
|
return userList.value.filter(x => x.userId !== useUserStore().id)
|
2024-07-21 23:13:27 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
/*-----方法-----*/
|
|
|
|
|
|
//当前选择的是否为全部
|
|
|
|
|
|
const selectIsAll = () => {
|
2025-02-02 00:22:27 +08:00
|
|
|
|
return currentSelectUser.value === 'all';
|
2024-07-21 13:37:56 +08:00
|
|
|
|
};
|
|
|
|
|
|
//当前选择的是否为Ai
|
|
|
|
|
|
const selectIsAi = () => {
|
2025-02-03 01:18:15 +08:00
|
|
|
|
//以ai@开头
|
|
|
|
|
|
return /^ai@/.test(currentSelectUser.value);
|
2024-04-06 18:28:32 +08:00
|
|
|
|
};
|
2025-02-03 01:18:15 +08:00
|
|
|
|
//是否为公共的类型
|
2025-02-25 15:09:17 +08:00
|
|
|
|
const isPublicType = (itemType) => {
|
|
|
|
|
|
return itemType === 'all' || /^ai@/.test(itemType);
|
2025-02-03 01:18:15 +08:00
|
|
|
|
}
|
2024-04-06 18:28:32 +08:00
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
//输入框的值被更改(同时保存到store中)
|
2024-04-06 18:28:32 +08:00
|
|
|
|
const changeInputValue = (inputValue) => {
|
|
|
|
|
|
currentInputValue.value = inputValue;
|
|
|
|
|
|
let index = -1;
|
|
|
|
|
|
let findKey = currentSelectUser.value?.userId
|
|
|
|
|
|
if (selectIsAll()) {
|
2024-07-21 13:37:56 +08:00
|
|
|
|
findKey = 'all';
|
2025-02-02 00:22:27 +08:00
|
|
|
|
} else if (selectIsAi()) {
|
2025-02-03 01:18:15 +08:00
|
|
|
|
findKey = currentSelectUser.value;
|
2024-04-06 18:28:32 +08:00
|
|
|
|
}
|
2025-02-02 00:22:27 +08:00
|
|
|
|
index = inputListDataStore.value.findIndex(obj => obj.key === findKey);
|
2024-04-06 18:28:32 +08:00
|
|
|
|
inputListDataStore.value[index].value = currentInputValue.value;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
//获取输入框的值(切换左侧菜单的时候,给输入框补充之前没发送的值)
|
|
|
|
|
|
const getCurrentInputValue = () => {
|
2024-04-06 18:28:32 +08:00
|
|
|
|
if (selectIsAll()) {
|
2025-02-02 00:22:27 +08:00
|
|
|
|
return inputListDataStore.value.filter(x => x.key === "all")[0].value;
|
|
|
|
|
|
} else if (selectIsAi()) {
|
2025-02-03 01:18:15 +08:00
|
|
|
|
return inputListDataStore.value.filter(x => x.key === currentSelectUser.value)[0].value;
|
2025-02-02 00:22:27 +08:00
|
|
|
|
} else {
|
2024-04-06 18:28:32 +08:00
|
|
|
|
//如果不存在初始存储值
|
2025-02-02 00:22:27 +08:00
|
|
|
|
if (!inputListDataStore.value.some(x => x.key === currentSelectUser.value.userId)) {
|
2025-02-25 15:09:17 +08:00
|
|
|
|
inputListDataStore.value.push({key: currentSelectUser.value.userId, value: "", type: 'user'});
|
2024-04-06 18:28:32 +08:00
|
|
|
|
return "";
|
|
|
|
|
|
}
|
2025-02-02 00:22:27 +08:00
|
|
|
|
return inputListDataStore.value.filter(x => x.key === currentSelectUser.value.userId)[0].value;
|
2024-04-06 18:28:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//点击用户列表,
|
2024-07-21 13:37:56 +08:00
|
|
|
|
const onclickUserItem = (userInfo, itemType) => {
|
2025-02-03 01:18:15 +08:00
|
|
|
|
//公共
|
|
|
|
|
|
if (isPublicType(itemType)) {
|
|
|
|
|
|
currentSelectUser.value = itemType;
|
|
|
|
|
|
}
|
|
|
|
|
|
//个人
|
|
|
|
|
|
else {
|
2024-04-06 18:28:32 +08:00
|
|
|
|
currentSelectUser.value = userInfo;
|
|
|
|
|
|
}
|
|
|
|
|
|
//填充临时存储的输入框
|
|
|
|
|
|
var value = getCurrentInputValue();
|
|
|
|
|
|
//更新当前的输入框
|
|
|
|
|
|
changeInputValue(value);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//点击发送按钮
|
|
|
|
|
|
const onclickSendMsg = () => {
|
2025-02-03 01:18:15 +08:00
|
|
|
|
//发送空消息
|
2025-02-02 00:22:27 +08:00
|
|
|
|
if (currentInputValue.value === "") {
|
2024-04-07 16:35:21 +08:00
|
|
|
|
msgIsNullShow.value = true;
|
|
|
|
|
|
setTimeout(() => {
|
2024-04-06 18:28:32 +08:00
|
|
|
|
// 这里写上你想要3秒后执行的代码
|
2024-04-07 16:35:21 +08:00
|
|
|
|
msgIsNullShow.value = false;
|
2024-04-06 18:28:32 +08:00
|
|
|
|
}, 3000);
|
2024-04-07 16:35:21 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
2024-04-06 18:28:32 +08:00
|
|
|
|
|
|
|
|
|
|
if (selectIsAll()) {
|
|
|
|
|
|
onclickSendGroupMsg("all", currentInputValue.value);
|
2025-02-02 00:22:27 +08:00
|
|
|
|
} else if (selectIsAi()) {
|
2024-07-21 13:37:56 +08:00
|
|
|
|
//ai消息需要将上下文存储
|
2025-02-02 00:22:27 +08:00
|
|
|
|
sendAiChatContext.value.push({
|
|
|
|
|
|
answererType: 'User',
|
|
|
|
|
|
message: currentInputValue.value,
|
2025-02-03 01:18:15 +08:00
|
|
|
|
number: sendAiChatContext.value.length,
|
|
|
|
|
|
messageType: currentSelectUser.value
|
2025-02-02 00:22:27 +08:00
|
|
|
|
})
|
2024-07-21 23:13:27 +08:00
|
|
|
|
|
2024-07-21 13:37:56 +08:00
|
|
|
|
//离线前端存储
|
2025-02-02 00:22:27 +08:00
|
|
|
|
chatStore.addMsg({
|
2025-02-03 01:18:15 +08:00
|
|
|
|
messageType: currentSelectUser.value,
|
2025-02-02 00:22:27 +08:00
|
|
|
|
content: currentInputValue.value,
|
|
|
|
|
|
sendUserId: userStore.id,
|
|
|
|
|
|
sendUserInfo: {user: {icon: userStore.icon}}
|
|
|
|
|
|
})
|
2025-02-03 01:18:15 +08:00
|
|
|
|
//ai模型,去掉key的ai@开头的字符串
|
2025-02-25 15:09:17 +08:00
|
|
|
|
const model = currentSelectUser.value.replace(/^ai@/, '');
|
2025-02-03 01:18:15 +08:00
|
|
|
|
//上下文内容,当前ai进行隔离
|
2025-02-25 15:09:17 +08:00
|
|
|
|
const content = sendAiChatContext.value.filter(x => x.messageType === currentSelectUser.value)
|
|
|
|
|
|
|
2024-07-21 13:37:56 +08:00
|
|
|
|
//发送ai消息
|
2025-02-25 15:09:17 +08:00
|
|
|
|
sendAiChat(content, model);
|
2025-02-02 00:22:27 +08:00
|
|
|
|
} else {
|
2024-04-06 18:28:32 +08:00
|
|
|
|
onclickSendPersonalMsg(currentSelectUser.value.userId, currentInputValue.value);
|
|
|
|
|
|
}
|
|
|
|
|
|
changeInputValue("");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//点击发送个人消息
|
|
|
|
|
|
const onclickSendPersonalMsg = (receiveId, msg) => {
|
|
|
|
|
|
//添加到本地存储
|
|
|
|
|
|
chatStore.addMsg({
|
|
|
|
|
|
messageType: "Personal",
|
|
|
|
|
|
sendUserId: userStore.id,
|
|
|
|
|
|
content: msg,
|
|
|
|
|
|
receiveId: receiveId
|
|
|
|
|
|
});
|
2025-02-02 00:22:27 +08:00
|
|
|
|
sendPersonalMessage({userId: receiveId, content: msg});
|
2024-04-06 18:28:32 +08:00
|
|
|
|
//调用接口发送消息
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//点击发送群组消息按钮
|
|
|
|
|
|
const onclickSendGroupMsg = (groupName, msg) => {
|
|
|
|
|
|
//组还需区分是否给全部成员组
|
|
|
|
|
|
if (selectIsAll) {
|
2025-02-02 00:22:27 +08:00
|
|
|
|
sendGroupMessage({content: msg});
|
|
|
|
|
|
} else {
|
2024-04-06 18:28:32 +08:00
|
|
|
|
alert("暂未实现");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-04-07 16:35:21 +08:00
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
//获取当前最后一条信息(显示在左侧菜单)
|
2024-07-21 13:37:56 +08:00
|
|
|
|
const getLastMessage = ((receiveId, itemType) => {
|
2025-02-03 01:18:15 +08:00
|
|
|
|
if (isPublicType(itemType)) {
|
|
|
|
|
|
const message = chatStore.getMsgContextFunc(itemType);
|
|
|
|
|
|
return message[message.length - 1]?.content.substring(0, 15);
|
2025-02-25 15:09:17 +08:00
|
|
|
|
} else {
|
2024-04-07 16:35:21 +08:00
|
|
|
|
const messageContext = chatStore.personalMsgContext.filter(x => {
|
|
|
|
|
|
//两个条件
|
|
|
|
|
|
//接收用户者id为对面id(我发给他)
|
|
|
|
|
|
//或者,发送用户id为对面(他发给我)
|
2025-02-02 00:22:27 +08:00
|
|
|
|
return (x.receiveId === receiveId && x.sendUserId === userStore.id) ||
|
|
|
|
|
|
(x.sendUserId === receiveId && x.receiveId === userStore.id);
|
2024-04-07 16:35:21 +08:00
|
|
|
|
});
|
2024-07-21 13:37:56 +08:00
|
|
|
|
return messageContext[messageContext.length - 1]?.content.substring(0, 15);
|
2024-04-07 16:35:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
})
|
2025-02-02 00:22:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*----------以下方法是对内容通用处理,没有业务逻辑,无需变化----------*/
|
2025-02-03 01:18:15 +08:00
|
|
|
|
const imageSrc = (imageName) => {
|
|
|
|
|
|
// 动态拼接路径
|
|
|
|
|
|
return new URL(`../../assets/chat_images/${imageName}`, import.meta.url).href;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//绑定的input改变事件
|
|
|
|
|
|
const updateInputValue = (event) => {
|
|
|
|
|
|
changeInputValue(event.target.value);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//输入框按键事件
|
|
|
|
|
|
const handleKeydownInput = () => {
|
|
|
|
|
|
// 检查是否按下 Shift + Enter
|
|
|
|
|
|
if (event.key === 'Enter' && event.shiftKey) {
|
|
|
|
|
|
// 允许输入换行
|
|
|
|
|
|
return; // 让默认行为继续
|
2025-02-02 00:22:27 +08:00
|
|
|
|
}
|
2025-02-03 01:18:15 +08:00
|
|
|
|
// 如果只按下 Enter,则阻止默认的提交行为,比如在表单中
|
|
|
|
|
|
if (event.key === 'Enter') {
|
|
|
|
|
|
// 阻止默认行为
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
onclickSendMsg();
|
|
|
|
|
|
return;
|
2025-02-02 00:22:27 +08:00
|
|
|
|
}
|
2025-02-03 01:18:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//关闭聊天框
|
|
|
|
|
|
const onclickClose = () => {
|
|
|
|
|
|
router.push({path: "/index"})
|
|
|
|
|
|
.then(() => {
|
|
|
|
|
|
// 重新刷新页面
|
|
|
|
|
|
location.reload()
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
//清除ai对话
|
2025-02-03 01:18:15 +08:00
|
|
|
|
const clearAiMsg = () => {
|
|
|
|
|
|
sendAiChatContext.value = [];
|
|
|
|
|
|
chatStore.clearTypeMsg(currentSelectUser.value);
|
|
|
|
|
|
ElMessage({
|
|
|
|
|
|
message: "当前Ai会话清除成功",
|
|
|
|
|
|
type: "success",
|
|
|
|
|
|
duration: 2000,
|
|
|
|
|
|
});
|
2025-02-02 00:22:27 +08:00
|
|
|
|
|
2025-02-03 01:18:15 +08:00
|
|
|
|
}
|
2025-02-02 00:22:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//转换markdown
|
2025-02-03 01:18:15 +08:00
|
|
|
|
const toMarkDownHtml = (text) => {
|
2025-02-12 22:25:15 +08:00
|
|
|
|
//处理数学公式
|
2025-02-25 15:09:17 +08:00
|
|
|
|
let soureMd = text.replace(/\\\[/g, '$').replace(/\\\]/g, '$');
|
2025-02-03 01:18:15 +08:00
|
|
|
|
//需要注意代码块样式
|
2025-02-12 22:25:15 +08:00
|
|
|
|
let soureHtml = marked(soureMd);
|
2025-02-03 01:18:15 +08:00
|
|
|
|
nextTick(() => {
|
|
|
|
|
|
addCopyEvent();
|
|
|
|
|
|
})
|
2025-02-25 15:09:17 +08:00
|
|
|
|
return soureHtml;
|
2025-02-03 01:18:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
//code部分处理、高亮
|
|
|
|
|
|
const codeHandler = (code, language) => {
|
|
|
|
|
|
const codeIndex = parseInt(Date.now() + "") + Math.floor(Math.random() * 10000000);
|
|
|
|
|
|
//console.log(codeIndex,"codeIndex");
|
2025-05-01 15:58:43 +08:00
|
|
|
|
// 格式化第一行是右侧language和 "复制" 按钮;
|
2025-02-03 01:18:15 +08:00
|
|
|
|
if (code) {
|
|
|
|
|
|
const navCode = navHandler(code)
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 使用 highlight.js 对代码进行高亮显示
|
|
|
|
|
|
const preCode = hljs.highlightAuto(code).value;
|
|
|
|
|
|
// 将代码包裹在 textarea 中,由于防止textarea渲染出现问题,这里将 "<" 用 "<" 代替,不影响复制功能
|
|
|
|
|
|
let html = `<pre class='hljs pre'><div class="header"><span class="language">${language}</span><span class="copy" id="${codeIndex}">复制代码</span></div><div class="code-con"><div class="nav">${navCode}</div><code class="code">${preCode}</code></div></pre>`;
|
|
|
|
|
|
codeCopyDic.push({id: codeIndex, code: code});
|
|
|
|
|
|
// console.log(codeCopyDic.length);
|
|
|
|
|
|
return html;
|
|
|
|
|
|
//<textarea style="position: absolute;top: -9999px;left: -9999px;z-index: -9999;" id="copy${codeIndex}">${code.replace(/<\/textarea>/g, "</textarea>")}</textarea>
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.log(error);
|
2025-02-02 00:22:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-03 01:18:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
//左侧导航栏处理
|
|
|
|
|
|
const navHandler = (code) => {
|
|
|
|
|
|
//获取行数
|
|
|
|
|
|
var linesCount = getLinesCount(code);
|
|
|
|
|
|
var currentLine = 1;
|
|
|
|
|
|
var liHtml = ``;
|
|
|
|
|
|
while (linesCount + 1 >= currentLine) {
|
|
|
|
|
|
liHtml += `<li class="nav-li">${currentLine}</li>`
|
|
|
|
|
|
currentLine++
|
2025-02-02 00:22:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-03 01:18:15 +08:00
|
|
|
|
let html = `<ul class="nav-ul">${liHtml}</ul>`
|
|
|
|
|
|
return html;
|
|
|
|
|
|
}
|
|
|
|
|
|
const BREAK_LINE_REGEXP = /\r\n|\r|\n/g;
|
|
|
|
|
|
const getLinesCount = (text) => {
|
|
|
|
|
|
return (text.trim().match(BREAK_LINE_REGEXP) || []).length;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
let timerTip = null;
|
2025-02-02 00:22:27 +08:00
|
|
|
|
//倒计时显示tip
|
2025-02-03 01:18:15 +08:00
|
|
|
|
const startCountTip = () => {
|
|
|
|
|
|
timerTip = setInterval(() => {
|
|
|
|
|
|
if (isShowTipNumber.value > 0) {
|
|
|
|
|
|
isShowTipNumber.value--;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
clearInterval(timerTip); // 倒计时结束
|
|
|
|
|
|
}
|
|
|
|
|
|
}, 1000);
|
|
|
|
|
|
};
|
2025-02-02 00:22:27 +08:00
|
|
|
|
//代码copy事件
|
2025-02-03 01:18:15 +08:00
|
|
|
|
const addCopyEvent = () => {
|
|
|
|
|
|
const copySpans = document.querySelectorAll('.copy');
|
2025-02-02 00:22:27 +08:00
|
|
|
|
// 为每个 copy span 元素添加点击事件
|
2025-02-03 01:18:15 +08:00
|
|
|
|
copySpans.forEach(span => {
|
|
|
|
|
|
//先移除,再新增
|
|
|
|
|
|
span.removeEventListener('click', clickCopyEvent);
|
|
|
|
|
|
span.addEventListener('click', clickCopyEvent);
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
const clickCopyEvent = async function (event) {
|
|
|
|
|
|
const spanId = event.target.id;
|
|
|
|
|
|
console.log(codeCopyDic, "codeCopyDic")
|
|
|
|
|
|
console.log(spanId, "spanId")
|
2025-02-12 22:25:15 +08:00
|
|
|
|
await navigator.clipboard.writeText(codeCopyDic.filter(x => x.id == spanId)[0].code);
|
2025-02-03 01:18:15 +08:00
|
|
|
|
ElMessage({
|
|
|
|
|
|
message: "代码块复制成功",
|
|
|
|
|
|
type: "success",
|
|
|
|
|
|
duration: 2000,
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
2024-04-04 19:28:18 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
2024-04-02 18:41:41 +08:00
|
|
|
|
<template>
|
2024-07-28 23:40:29 +08:00
|
|
|
|
|
|
|
|
|
|
<div style="position: absolute; top: 0;left: 0;" v-show="isShowTipNumber>0">
|
2025-05-01 15:58:43 +08:00
|
|
|
|
<p>当前版本:2.4.0</p>
|
2024-04-09 23:59:26 +08:00
|
|
|
|
<p>tip:官方学习交流群每次发送消息消耗 1 钱钱</p>
|
2025-05-01 15:58:43 +08:00
|
|
|
|
<p>tip:点击聊天窗口右上角"X"可退出</p>
|
2024-06-09 00:29:53 +08:00
|
|
|
|
<p>tip:多人同时在聊天室时,左侧可显示其他成员</p>
|
2024-07-21 20:40:20 +08:00
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<p>tip:当前支持多种AI模式,由于接口收费原因,还请各位手下留情</p>
|
2024-07-22 23:59:21 +08:00
|
|
|
|
<p>tip:ai对话为持续对话,已优化输出速度</p>
|
|
|
|
|
|
<p>tip:ai对话只有本地存储了记录,可点击清除或刷新</p>
|
2024-07-28 23:40:29 +08:00
|
|
|
|
<p>即将自动隐藏tip:{{ isShowTipNumber }}</p>
|
2024-04-09 23:59:26 +08:00
|
|
|
|
</div>
|
2024-04-02 18:41:41 +08:00
|
|
|
|
<div class="body">
|
2024-04-02 23:24:10 +08:00
|
|
|
|
<div class="left">
|
|
|
|
|
|
<div class="icon">
|
2024-07-21 23:13:27 +08:00
|
|
|
|
|
2024-07-21 13:37:56 +08:00
|
|
|
|
<img :src="userStore.icon">
|
2024-04-02 18:41:41 +08:00
|
|
|
|
</div>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
<ul class="top-icon">
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<li><img src="@/assets/chat_images/wechat.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/addressBook.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/collection.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/file.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/friend.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/line.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/look.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/sou.png"/></li>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
</ul>
|
|
|
|
|
|
<ul class="bottom-icon">
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<li><img src="@/assets/chat_images/mini.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/phone.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/other.png"/></li>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
</ul>
|
2024-04-02 23:24:10 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-05-01 15:58:43 +08:00
|
|
|
|
<div class="middle" :style="{ width: middleWidth + 'px' }">
|
2024-04-02 23:24:10 +08:00
|
|
|
|
<div class="header">
|
2024-04-03 16:39:06 +08:00
|
|
|
|
<div class="header-div">
|
|
|
|
|
|
<div class="search">
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<img src="@/assets/chat_images/search.png"/>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
<span>搜索</span>
|
|
|
|
|
|
</div>
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<button type="button"><img src="@/assets/chat_images/add.png"/></button>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="user-list">
|
2025-02-03 01:18:15 +08:00
|
|
|
|
<div v-for="item in inputListDataStore.filter(x=>x.type!=='user')" :key="item.key" class="user-div"
|
|
|
|
|
|
@click="onclickUserItem(null, item.key)"
|
2025-02-02 00:22:27 +08:00
|
|
|
|
:class="{ 'select-user-item': currentSelectUser === item.key }">
|
2024-07-21 13:37:56 +08:00
|
|
|
|
<div class="user-div-left">
|
2025-02-03 01:18:15 +08:00
|
|
|
|
<img style="height: 48px;width: 48px; " :src="imageSrc(item.logo)"/>
|
2024-07-21 13:37:56 +08:00
|
|
|
|
<div class="user-name-msg">
|
2025-02-03 01:18:15 +08:00
|
|
|
|
<p class="font-name">{{ item.name }}</p>
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<p class="font-msg">{{ getLastMessage(null, item.key) }}</p>
|
2024-07-21 13:37:56 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class=" user-div-right">
|
|
|
|
|
|
10:28
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-02-25 15:09:17 +08:00
|
|
|
|
|
2024-07-21 13:37:56 +08:00
|
|
|
|
<div v-for="(item, i) in currentUserItem" :key="i" @click="onclickUserItem(item, 'user')" class="user-div"
|
2025-02-02 00:22:27 +08:00
|
|
|
|
:class="{ 'select-user-item': currentSelectUser?.userId === item.userId }">
|
2024-04-03 16:39:06 +08:00
|
|
|
|
<div class="user-div-left">
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<img :src="getChatUrl(item.userIcon)"/>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
<div class="user-name-msg">
|
2024-04-06 18:28:32 +08:00
|
|
|
|
<p class="font-name">{{ item.userName }}</p>
|
2024-07-21 13:37:56 +08:00
|
|
|
|
<p class="font-msg">{{ getLastMessage(item.userId, 'user') }}</p>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class=" user-div-right">
|
|
|
|
|
|
10:28
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2024-04-02 18:41:41 +08:00
|
|
|
|
</div>
|
2024-04-02 23:24:10 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-05-01 15:58:43 +08:00
|
|
|
|
<!-- 垂直分割线 -->
|
|
|
|
|
|
<div class="vertical-resizer" @mousedown="startDragVertical"></div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="right" :style="{ width: 'calc(1400px - ' + (middleWidth + 70) + 'px)' }">
|
2024-04-03 16:39:06 +08:00
|
|
|
|
<div class="header">
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<div class="header-left">{{ currentHeaderName }} <span class="clear-msg" v-show="selectIsAi()"
|
|
|
|
|
|
@click="clearAiMsg">点击此处清空当前对话</span>
|
2024-07-21 23:13:27 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2024-04-03 16:39:06 +08:00
|
|
|
|
<div class="header-right">
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<ul>
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<li><img src="@/assets/chat_images/fixed.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/min.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/max.png"/></li>
|
|
|
|
|
|
<li style="cursor: pointer;" @click="onclickClose"><img src="@/assets/chat_images/close.png"/></li>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<div class="more"><img src="@/assets/chat_images/other2.png"/></div>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
2025-05-01 15:58:43 +08:00
|
|
|
|
<div class="content" :style="{ height: contentHeight + 'px' }">
|
2024-04-06 18:28:32 +08:00
|
|
|
|
<div v-for="(item, i) in currentMsgContext" :key="i">
|
2024-07-21 23:13:27 +08:00
|
|
|
|
|
2024-07-21 13:37:56 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 对话框右侧 -->
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<div class="content-myself content-common" v-if="item.sendUserId === userStore.id">
|
2024-07-21 23:13:27 +08:00
|
|
|
|
<div class="content-myself-msg content-msg-common " v-html="item.content"></div>
|
2024-07-21 13:37:56 +08:00
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<img :src="getChatUrl(item.sendUserInfo?.user.icon, 'right')"/>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2024-07-21 13:37:56 +08:00
|
|
|
|
<!-- 对话框左侧 -->
|
2024-04-06 18:28:32 +08:00
|
|
|
|
<div class="content-others content-common" v-else>
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<img :src="getChatUrl(item.sendUserInfo?.user.icon, 'left')"/>
|
2024-04-09 23:59:26 +08:00
|
|
|
|
<div>
|
2024-07-21 13:37:56 +08:00
|
|
|
|
|
|
|
|
|
|
<p v-if="selectIsAll()" class="content-others-username">{{ item.sendUserInfo?.user.userName }}</p>
|
2024-07-21 23:13:27 +08:00
|
|
|
|
<div class="content-others-msg content-msg-common " :class="{ 'content-others-msg-group': selectIsAll() }"
|
2025-02-02 00:22:27 +08:00
|
|
|
|
v-html="item.content">
|
2024-07-21 23:13:27 +08:00
|
|
|
|
|
2024-04-09 23:59:26 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2024-04-06 18:28:32 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2024-04-03 16:39:06 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
2025-05-01 15:58:43 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 水平分割线 -->
|
|
|
|
|
|
<div class="horizontal-resizer" @mousedown="startDragHorizontal"></div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="bottom" :style="{ height: 'calc(100% - ' + (contentHeight + 75) + 'px)' }">
|
2024-04-03 16:39:06 +08:00
|
|
|
|
<div class="bottom-tool">
|
|
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
<ul class="ul-left">
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<li><img src="@/assets/chat_images/emoji.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/sendFile.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/screenshot.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/chatHistory.png"/></li>
|
2024-04-06 18:28:32 +08:00
|
|
|
|
</ul>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
<ul class="ul-right">
|
2025-02-02 00:22:27 +08:00
|
|
|
|
<li><img src="@/assets/chat_images/landline.png"/></li>
|
|
|
|
|
|
<li><img src="@/assets/chat_images/videoChat.png"/></li>
|
2024-04-06 18:28:32 +08:00
|
|
|
|
</ul>
|
2024-04-02 18:41:41 +08:00
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<!-- <div class="bottom-input" contenteditable="true" @input="updateInputValue"> -->
|
|
|
|
|
|
<!-- <div class="bottom-input" contenteditable="true" @input="updateInputValue">
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
</div> -->
|
2024-04-07 16:35:21 +08:00
|
|
|
|
<textarea class="bottom-input" v-model="currentInputValue" @input="updateInputValue"
|
2025-02-02 00:22:27 +08:00
|
|
|
|
@keydown="handleKeydownInput"
|
2024-08-10 13:03:29 +08:00
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
>
|
2024-04-06 18:28:32 +08:00
|
|
|
|
|
|
|
|
|
|
</textarea>
|
|
|
|
|
|
<div class="bottom-send">
|
|
|
|
|
|
<div class="msg-null" v-show="msgIsNullShow">不能发送空白信息</div>
|
|
|
|
|
|
<button @click="onclickSendMsg()">
|
|
|
|
|
|
发送(S)
|
|
|
|
|
|
</button>
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2024-04-06 18:28:32 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2024-04-02 18:41:41 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
<style scoped lang="scss">
|
2025-02-02 00:22:27 +08:00
|
|
|
|
ul {
|
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-04-02 18:41:41 +08:00
|
|
|
|
.body {
|
2024-04-02 23:24:10 +08:00
|
|
|
|
height: 790px;
|
|
|
|
|
|
width: 1400px;
|
2024-04-02 18:41:41 +08:00
|
|
|
|
display: flex;
|
2025-05-01 15:58:43 +08:00
|
|
|
|
justify-content: flex-start;
|
2024-04-02 18:41:41 +08:00
|
|
|
|
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
|
2025-05-01 15:58:43 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 垂直分割线样式 */
|
|
|
|
|
|
.vertical-resizer {
|
|
|
|
|
|
width: 5px;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
background-color: #e7e7e7;
|
|
|
|
|
|
cursor: col-resize;
|
|
|
|
|
|
z-index: 10;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.vertical-resizer:hover {
|
|
|
|
|
|
background-color: #c0c0c0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 水平分割线样式 */
|
|
|
|
|
|
.horizontal-resizer {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 5px;
|
|
|
|
|
|
background-color: #e7e7e7;
|
|
|
|
|
|
cursor: row-resize;
|
|
|
|
|
|
z-index: 10;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.horizontal-resizer:hover {
|
|
|
|
|
|
background-color: #c0c0c0;
|
2024-04-02 18:41:41 +08:00
|
|
|
|
}
|
2024-04-02 23:24:10 +08:00
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
.select-user-item {
|
|
|
|
|
|
background-color: #C8C8CA !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-04-02 18:41:41 +08:00
|
|
|
|
.left {
|
|
|
|
|
|
background-color: #2a2a2a;
|
|
|
|
|
|
width: 70px;
|
2024-04-02 23:24:10 +08:00
|
|
|
|
padding: 46px 10px 0 10px;
|
2025-05-01 15:58:43 +08:00
|
|
|
|
flex-shrink: 0;
|
2024-04-02 23:24:10 +08:00
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
|
background-color: burlywood;
|
|
|
|
|
|
height: 46px;
|
|
|
|
|
|
width: 46px;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
img {
|
2024-04-02 23:24:10 +08:00
|
|
|
|
height: 100%;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-04-02 18:41:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.middle {
|
|
|
|
|
|
background-color: #dadbdc;
|
|
|
|
|
|
width: 380px;
|
2025-05-01 15:58:43 +08:00
|
|
|
|
flex-shrink: 0;
|
2024-04-02 23:24:10 +08:00
|
|
|
|
|
2024-04-02 18:41:41 +08:00
|
|
|
|
.header {
|
|
|
|
|
|
height: 75px;
|
|
|
|
|
|
background: #f7f7f7;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
padding: 26px 0 26px 0;
|
|
|
|
|
|
|
|
|
|
|
|
.header-div {
|
|
|
|
|
|
background-color: #F7F7F7;
|
2024-04-02 23:24:10 +08:00
|
|
|
|
height: 30px;
|
2025-05-01 15:58:43 +08:00
|
|
|
|
width: 90%;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
margin: auto;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
|
|
.search {
|
2025-05-01 15:58:43 +08:00
|
|
|
|
width: 85%;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
height: 100%;
|
|
|
|
|
|
background-color: #E2E2E2;
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
|
height: 16px;
|
|
|
|
|
|
width: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
color: #818181;
|
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
width: 30px;
|
|
|
|
|
|
background-color: #E2E2E2;
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
padding: 5px 3px;
|
|
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-04-02 23:24:10 +08:00
|
|
|
|
}
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
2024-04-02 18:41:41 +08:00
|
|
|
|
}
|
2024-04-02 23:24:10 +08:00
|
|
|
|
|
2024-04-03 16:39:06 +08:00
|
|
|
|
.user-list::-webkit-scrollbar-thumb {
|
|
|
|
|
|
background-color: #BEBCBA;
|
|
|
|
|
|
/* 滚动条滑块颜色 */
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-list::-webkit-scrollbar {
|
|
|
|
|
|
width: 8px;
|
|
|
|
|
|
/* 滚动条宽度 */
|
|
|
|
|
|
height: 10px;
|
|
|
|
|
|
/* 滚动条高度 */
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-list {
|
|
|
|
|
|
height: calc(100% - 75px);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
|
|
|
|
/* 只启用垂直方向滚动条 */
|
|
|
|
|
|
.user-div {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
height: 80px;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
background-color: #EAE8E7;
|
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
|
|
|
|
&-left {
|
|
|
|
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
|
|
.user-name-msg {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
|
|
|
|
|
|
|
.font-name {
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.font-msg {
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
color: #999999;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&-right {
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
color: #999999;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-div:hover {
|
|
|
|
|
|
background-color: #D9D8D8;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-04-02 18:41:41 +08:00
|
|
|
|
}
|
2024-04-02 23:24:10 +08:00
|
|
|
|
|
2024-04-02 18:41:41 +08:00
|
|
|
|
.right {
|
|
|
|
|
|
background-color: #f5f5f5;
|
2025-05-01 15:58:43 +08:00
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2024-04-02 23:24:10 +08:00
|
|
|
|
|
2024-04-02 18:41:41 +08:00
|
|
|
|
.header {
|
|
|
|
|
|
height: 75px;
|
|
|
|
|
|
background: #f7f7f7;
|
|
|
|
|
|
border: 1px solid #e7e7e7;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
2025-05-01 15:58:43 +08:00
|
|
|
|
flex-shrink: 0;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
.header-left {
|
|
|
|
|
|
padding: 25px;
|
|
|
|
|
|
font-size: 25px;
|
|
|
|
|
|
align-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.header-right {
|
|
|
|
|
|
ul {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
|
padding: 8px 12.5px 10px 12.5px;
|
|
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
|
height: 15px;
|
|
|
|
|
|
width: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.more {
|
|
|
|
|
|
padding: 0px 12.5px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
|
height: 18px;
|
|
|
|
|
|
width: 18px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-04-02 18:41:41 +08:00
|
|
|
|
}
|
2024-04-02 23:24:10 +08:00
|
|
|
|
|
2024-04-02 18:41:41 +08:00
|
|
|
|
.content {
|
2024-04-03 16:39:06 +08:00
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
/* 只启用垂直方向滚动条 */
|
|
|
|
|
|
padding: 20px 40px;
|
2025-05-01 15:58:43 +08:00
|
|
|
|
flex-grow: 1;
|
2024-04-07 16:35:21 +08:00
|
|
|
|
|
2024-04-02 18:41:41 +08:00
|
|
|
|
}
|
2024-04-02 23:24:10 +08:00
|
|
|
|
|
2024-04-02 18:41:41 +08:00
|
|
|
|
.bottom {
|
|
|
|
|
|
background: #f7f7f7;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
border-top: 1.5px solid #e7e7e7;
|
|
|
|
|
|
padding: 15px 35px;
|
2025-05-01 15:58:43 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
min-height: 150px;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
&-tool {
|
|
|
|
|
|
display: flex;
|
2024-04-06 18:28:32 +08:00
|
|
|
|
justify-content: space-between;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
height: 22px;
|
2025-05-01 15:58:43 +08:00
|
|
|
|
margin-bottom: 5px;
|
2024-04-06 18:28:32 +08:00
|
|
|
|
|
2024-04-03 16:39:06 +08:00
|
|
|
|
.ul-left {
|
2024-04-06 18:28:32 +08:00
|
|
|
|
display: flex;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
li {
|
|
|
|
|
|
width: 22px;
|
|
|
|
|
|
height: 22px;
|
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
|
}
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
img {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
}
|
2024-04-06 18:28:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-04-03 16:39:06 +08:00
|
|
|
|
.ul-right {
|
2024-04-06 18:28:32 +08:00
|
|
|
|
display: flex;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
li {
|
|
|
|
|
|
width: 22px;
|
|
|
|
|
|
height: 22px;
|
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
|
}
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
img {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-04-03 16:39:06 +08:00
|
|
|
|
&-input {
|
2024-04-06 18:28:32 +08:00
|
|
|
|
font-family: "Microsoft YaHei", sans-serif;
|
2025-05-01 15:58:43 +08:00
|
|
|
|
flex-grow: 1;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
|
font-size: 18px;
|
2024-04-06 18:28:32 +08:00
|
|
|
|
background: #F7F7F7;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
resize: none;
|
|
|
|
|
|
outline: none;
|
2025-05-01 15:58:43 +08:00
|
|
|
|
min-height: 50px;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&-send {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
|
width: 126px;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
background-color: #E9E9E9;
|
|
|
|
|
|
color: #06AE56;
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
|
|
background-color: #D2D2D2;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-04-02 18:41:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-04-02 23:24:10 +08:00
|
|
|
|
|
2024-04-03 16:39:06 +08:00
|
|
|
|
.top-icon {
|
2024-04-02 23:24:10 +08:00
|
|
|
|
margin-top: 32px;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
li {
|
2024-04-02 23:24:10 +08:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
text-align: center;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
|
|
|
|
|
|
|
img {
|
2024-04-02 23:24:10 +08:00
|
|
|
|
height: 24px;
|
|
|
|
|
|
width: 24px;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
2024-04-02 23:24:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
.bottom-icon {
|
|
|
|
|
|
margin-top: 125px;
|
|
|
|
|
|
|
|
|
|
|
|
li {
|
2024-04-02 23:24:10 +08:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
text-align: center;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
|
|
|
|
|
|
|
img {
|
2024-04-02 23:24:10 +08:00
|
|
|
|
height: 24px;
|
|
|
|
|
|
width: 24px;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
2024-04-02 23:24:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.content-common {
|
|
|
|
|
|
display: flex;
|
2024-04-06 18:28:32 +08:00
|
|
|
|
margin-bottom: 18px;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
|
height: 45px;
|
|
|
|
|
|
width: 45px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content-msg-common {
|
2025-02-02 00:22:27 +08:00
|
|
|
|
// display: flex;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
align-content: center;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
|
|
margin: 0 15px;
|
|
|
|
|
|
padding: 5px 15px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
border-radius: 5px;
|
2024-07-21 23:13:27 +08:00
|
|
|
|
max-width: 600px;
|
2024-07-28 23:40:29 +08:00
|
|
|
|
text-align: justify;
|
2024-04-03 16:39:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.content-myself {
|
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content-myself-msg:hover {
|
|
|
|
|
|
|
|
|
|
|
|
background-color: #89D961;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content-myself-msg {
|
|
|
|
|
|
background-color: #95EC69;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content-myself-msg:hover:after {
|
|
|
|
|
|
border-left: 10px solid #89D961;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.content-others {
|
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
2024-04-09 23:59:26 +08:00
|
|
|
|
}
|
2024-07-21 13:37:56 +08:00
|
|
|
|
|
|
|
|
|
|
.content-others-username {
|
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
|
color: #B2B2B2;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
top: -15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content-others-msg-group {
|
2024-04-09 23:59:26 +08:00
|
|
|
|
position: relative;
|
2024-07-21 13:37:56 +08:00
|
|
|
|
top: -10px;
|
2024-04-09 23:59:26 +08:00
|
|
|
|
}
|
2024-07-21 13:37:56 +08:00
|
|
|
|
|
2024-04-03 16:39:06 +08:00
|
|
|
|
.content-others-msg {
|
|
|
|
|
|
background-color: #FFFFFF;
|
2024-04-09 23:59:26 +08:00
|
|
|
|
padding: 10px 15px;
|
2024-07-28 23:40:29 +08:00
|
|
|
|
|
2024-04-03 16:39:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content-others-msg:hover {
|
|
|
|
|
|
background-color: #EBEBEB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content-others-msg:hover:after {
|
|
|
|
|
|
border-right: 10px solid #EBEBEB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content-myself-msg:after {
|
|
|
|
|
|
content: '';
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
width: 0;
|
|
|
|
|
|
height: 0;
|
|
|
|
|
|
/* 箭头靠右边 */
|
|
|
|
|
|
top: 13px;
|
|
|
|
|
|
right: -10px;
|
|
|
|
|
|
border-top: 10px solid transparent;
|
|
|
|
|
|
border-bottom: 10px solid transparent;
|
|
|
|
|
|
border-left: 10px solid #97EC6F;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content-others-msg:after {
|
|
|
|
|
|
/* 箭头靠左边 */
|
|
|
|
|
|
content: '';
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
width: 0;
|
|
|
|
|
|
height: 0;
|
|
|
|
|
|
top: 13px;
|
|
|
|
|
|
left: -10px;
|
|
|
|
|
|
border-top: 10px solid transparent;
|
|
|
|
|
|
border-bottom: 10px solid transparent;
|
|
|
|
|
|
border-right: 10px solid #FFFFFF;
|
|
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
}
|
2024-04-07 16:35:21 +08:00
|
|
|
|
|
|
|
|
|
|
.msg-null {
|
2024-04-06 18:28:32 +08:00
|
|
|
|
width: 140px;
|
2024-04-07 16:35:21 +08:00
|
|
|
|
height: 41px;
|
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
left: 132px;
|
|
|
|
|
|
bottom: 60px;
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
// border: 2px solid #E5E5E5;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-content: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
font-size: 14px;
|
2024-04-06 18:28:32 +08:00
|
|
|
|
}
|
2024-04-07 16:35:21 +08:00
|
|
|
|
|
2024-04-06 18:28:32 +08:00
|
|
|
|
.msg-null:after {
|
|
|
|
|
|
/* 箭头靠下边 */
|
|
|
|
|
|
content: "";
|
2024-04-07 16:35:21 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
|
width: 0;
|
|
|
|
|
|
height: 0;
|
|
|
|
|
|
top: 40px;
|
|
|
|
|
|
left: 80px;
|
|
|
|
|
|
border-top: 10px solid #FFFFFF;
|
|
|
|
|
|
border-bottom: 10px solid transparent;
|
|
|
|
|
|
border-right: 10px solid transparent;
|
|
|
|
|
|
border-left: 10px solid transparent;
|
2024-04-06 18:28:32 +08:00
|
|
|
|
|
2024-04-03 16:39:06 +08:00
|
|
|
|
}
|
2024-07-21 23:13:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//以下是代码格式处理的样式
|
|
|
|
|
|
|
|
|
|
|
|
::v-deep(.li-list) {
|
|
|
|
|
|
list-style: inside !important;
|
|
|
|
|
|
//list-style: decimal !important;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
::v-deep(.pre-out) {
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
//overflow-x: hidden;
|
|
|
|
|
|
overflow-x: scroll;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
::v-deep(.pre) {
|
|
|
|
|
|
max-width: 570px;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
//overflow-x: hidden;
|
|
|
|
|
|
overflow-x: scroll;
|
2025-02-02 00:22:27 +08:00
|
|
|
|
|
2024-07-21 23:13:27 +08:00
|
|
|
|
.header {
|
|
|
|
|
|
background-color: #409eff;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
height: 30px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
padding-top: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-02-02 00:22:27 +08:00
|
|
|
|
.language {
|
|
|
|
|
|
}
|
2024-07-21 23:13:27 +08:00
|
|
|
|
|
|
|
|
|
|
.copy:hover {
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.copy {
|
|
|
|
|
|
margin: 0px 10px;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.code-con {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
background-color: #282C34;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.code {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
padding: 10px 10px;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2025-02-02 00:22:27 +08:00
|
|
|
|
|
|
|
|
|
|
.clear-msg {
|
2024-09-29 00:47:48 +08:00
|
|
|
|
font-size: large;
|
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
cursor: pointer; /* 设置为手型 */
|
|
|
|
|
|
}
|
2025-02-02 00:22:27 +08:00
|
|
|
|
|
2024-09-29 00:47:48 +08:00
|
|
|
|
.clear-msg:hover {
|
|
|
|
|
|
color: red;
|
|
|
|
|
|
cursor: pointer; /* 设置鼠标悬浮为手型 */
|
|
|
|
|
|
}
|
2025-02-25 15:09:17 +08:00
|
|
|
|
|
|
|
|
|
|
::v-deep(.katex-html) {
|
2025-02-12 22:25:15 +08:00
|
|
|
|
color: #7B7C7C;
|
|
|
|
|
|
font-size: smaller;
|
|
|
|
|
|
}
|
2025-02-25 15:09:17 +08:00
|
|
|
|
|
2024-07-21 23:13:27 +08:00
|
|
|
|
::v-deep(.nav-ul) {
|
|
|
|
|
|
border-right: 1px solid #FFFFFF;
|
|
|
|
|
|
margin-top: 12px;
|
2025-02-12 22:25:15 +08:00
|
|
|
|
margin-left: 0 !important;
|
2024-07-21 23:13:27 +08:00
|
|
|
|
padding-left: 10px;
|
|
|
|
|
|
padding-right: 2px;
|
2025-02-25 15:09:17 +08:00
|
|
|
|
|
2024-07-21 23:13:27 +08:00
|
|
|
|
.nav-li {
|
|
|
|
|
|
margin: 1.0px 0;
|
|
|
|
|
|
text-align: right;
|
|
|
|
|
|
margin-right: 3px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-02-25 15:09:17 +08:00
|
|
|
|
|
|
|
|
|
|
.content-msg-common ::v-deep(ul) {
|
2025-02-12 22:25:15 +08:00
|
|
|
|
margin-left: 20px;
|
|
|
|
|
|
}
|
2025-02-25 15:09:17 +08:00
|
|
|
|
|
|
|
|
|
|
.content-msg-common ::v-deep(ol) {
|
2025-02-12 22:25:15 +08:00
|
|
|
|
margin-left: 20px;
|
|
|
|
|
|
}
|
2025-02-25 15:09:17 +08:00
|
|
|
|
|
|
|
|
|
|
::v-deep(.katex) {
|
2025-02-12 22:25:15 +08:00
|
|
|
|
margin: 10px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-content: center;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
font-size: larger;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-04-02 18:41:41 +08:00
|
|
|
|
</style>
|