feat:即刻对话区域,和顶部logo切换,home页面的80改到50百分之,

This commit is contained in:
小张 2025-09-11 01:12:07 +08:00
parent ec1a19d005
commit 7fb049d31d
3 changed files with 161 additions and 133 deletions

View File

@ -2,7 +2,7 @@
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/logo/logo1.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>在线学习平台</title>
<meta name="description" content="专业的在线学习平台,提供优质的编程和技术课程">

View File

@ -3,11 +3,7 @@
<!-- 对话列表 -->
<div class="conversation-list">
<div class="conversation-header">
<h3>对话</h3>
<div class="search-box">
<input type="text" placeholder="搜索对话" v-model="searchKeyword" />
<img src="/images/profile/message.png" alt="搜索" class="search-icon" />
</div>
<h3>全部消息</h3>
</div>
<div class="conversation-items">
@ -19,7 +15,7 @@
>
<div class="avatar-container">
<img :src="conversation.avatar" :alt="conversation.name" class="conversation-avatar" />
<div v-if="conversation.unreadCount > 0" class="unread-badge">{{ conversation.unreadCount }}</div>
</div>
<div class="conversation-info">
<div class="conversation-name">{{ conversation.name }}</div>
@ -43,29 +39,12 @@
<div v-else class="chat-container">
<!-- 聊天头部 -->
<div class="chat-header">
<div class="chat-user-info">
<img :src="selectedConversation.avatar" :alt="selectedConversation.name" class="chat-avatar" />
<div class="chat-user-details">
<div class="chat-user-name">{{ selectedConversation.name }}</div>
<div class="chat-user-status">{{ selectedConversation.isOnline ? '在线' : '离线' }}</div>
</div>
</div>
<div class="chat-actions">
<button class="chat-action-btn">
<img src="/images/profile/message.png" alt="视频通话" />
</button>
<button class="chat-action-btn">
<img src="/images/profile/message.png" alt="语音通话" />
</button>
<button class="chat-action-btn">
<img src="/images/profile/message.png" alt="更多" />
</button>
</div>
<div class="chat-title">{{ selectedConversation.name }}</div>
</div>
<!-- 消息列表 -->
<div class="messages-container" ref="messagesContainer">
<div v-for="message in selectedConversation.messages" :key="message.id"
<div v-for="message in selectedConversation.messages" :key="message.id"
:class="['message-item', message.isSelf ? 'message-self' : 'message-other']">
<div v-if="!message.isSelf" class="message-avatar">
<img :src="selectedConversation.avatar" :alt="selectedConversation.name" />
@ -83,7 +62,7 @@
</div>
<div class="message-time">{{ message.time }}</div>
</div>
<div v-if="message.isSelf" class="message-avatar">
<div v-if="message.isSelf" class="message-avatar message-avatar-right">
<img src="/images/profile/profile.png" alt="我" />
</div>
</div>
@ -91,29 +70,34 @@
<!-- 输入区域 -->
<div class="input-area">
<div class="input-toolbar">
<button class="toolbar-btn" @click="showEmojiPicker = !showEmojiPicker">
<img src="/images/profile/message.png" alt="表情" />
</button>
<button class="toolbar-btn" @click="selectFile">
<img src="/images/profile/message.png" alt="附件" />
</button>
<button class="toolbar-btn">
<img src="/images/profile/message.png" alt="图片" />
</button>
</div>
<div class="input-container">
<textarea
v-model="messageInput"
placeholder="输入消息..."
<textarea
v-model="messageInput"
placeholder="这里输入…"
@keydown.enter.prevent="sendMessage"
@input="adjustTextareaHeight"
ref="messageTextarea"
rows="1"
rows="3"
></textarea>
<button class="send-btn" @click="sendMessage" :disabled="!messageInput.trim()">
发送
</button>
<div class="input-bottom">
<div class="input-toolbar">
<button class="toolbar-btn" @click="showEmojiPicker = !showEmojiPicker">
<img src="/images/courses/expression.png" alt="表情" class="toolbar-icon" />
</button>
<button class="toolbar-btn" @click="selectFile">
<img src="/images/courses/@.png" alt="@用户" class="toolbar-icon" />
</button>
<button class="toolbar-btn">
<img src="/images/courses/Image.png" alt="图片" class="toolbar-icon" />
</button>
</div>
<div class="send-area">
<span class="char-count">{{ messageInput.length }}/500</span>
<button class="send-btn" @click="sendMessage" :disabled="!messageInput.trim()">
发布
</button>
</div>
</div>
</div>
</div>
</div>
@ -288,9 +272,10 @@ onMounted(() => {
<style scoped>
.instant-message-container {
display: flex;
height: 600px;
width: 1183px;
height: 700px;
border: 1px solid #e6e6e6;
border-radius: 8px;
border-radius: 0;
overflow: hidden;
}
@ -304,13 +289,32 @@ onMounted(() => {
.conversation-header {
padding: 16px;
border-bottom: 1px solid #e6e6e6;
position: relative;
}
.conversation-header::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80%;
height: 1px;
background-color: #e6e6e6;
}
.conversation-header h3 {
margin: 0 0 12px 0;
margin: 0;
width: 64px;
height: 22px;
font-family: PingFangSC, PingFang SC, -apple-system, BlinkMacSystemFont, sans-serif;
font-weight: 500;
font-size: 16px;
font-weight: 600;
color: #3F3F44;
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}
.search-box {
@ -321,7 +325,7 @@ onMounted(() => {
width: 100%;
padding: 8px 32px 8px 12px;
border: 1px solid #d9d9d9;
border-radius: 6px;
border-radius: 0;
font-size: 14px;
}
@ -346,6 +350,7 @@ onMounted(() => {
cursor: pointer;
border-bottom: 1px solid #f0f0f0;
transition: background-color 0.2s;
border-radius: 0;
}
.conversation-item:hover {
@ -372,13 +377,21 @@ onMounted(() => {
position: absolute;
top: -4px;
right: -4px;
background: #ff4d4f;
color: white;
font-size: 12px;
padding: 2px 6px;
border-radius: 10px;
min-width: 16px;
width: 22px;
height: 16px;
background: #E2F5FF;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-family: PingFangSC, PingFang SC, -apple-system, BlinkMacSystemFont, sans-serif;
font-weight: 500;
font-size: 10px;
color: #0088D1;
line-height: 14px;
text-align: center;
font-style: normal;
text-transform: none;
}
.conversation-info {
@ -446,67 +459,47 @@ onMounted(() => {
flex: 1;
display: flex;
flex-direction: column;
height: 100%;
}
.chat-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px;
border-bottom: 1px solid #e6e6e6;
}
.chat-user-info {
display: flex;
align-items: center;
gap: 12px;
}
.chat-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
}
.chat-user-name {
font-size: 16px;
font-weight: 500;
}
.chat-user-status {
font-size: 12px;
color: #52c41a;
}
.chat-actions {
display: flex;
gap: 8px;
}
.chat-action-btn {
width: 32px;
height: 32px;
border: none;
background: none;
cursor: pointer;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
padding: 16px;
background: #F5F8FB;
position: relative;
}
.chat-action-btn:hover {
background-color: #f5f5f5;
.chat-header::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 90%;
height: 1px;
background-color: #e6e6e6;
}
.chat-action-btn img {
width: 20px;
.chat-title {
width: 160px;
height: 20px;
font-family: PingFangSC, PingFang SC, -apple-system, BlinkMacSystemFont, sans-serif;
font-weight: 400;
font-size: 16px;
color: #3F3F44;
line-height: 20px;
text-align: center;
font-style: normal;
text-transform: none;
}
.messages-container {
flex: 1;
background: #F5F8FB;
overflow-y: auto;
padding: 16px;
display: flex;
@ -520,7 +513,7 @@ onMounted(() => {
}
.message-item.message-self {
flex-direction: row-reverse;
justify-content: flex-end;
}
.message-avatar img {
@ -530,6 +523,11 @@ onMounted(() => {
object-fit: cover;
}
.message-avatar-right {
order: 2;
margin-left: 8px;
}
.message-content {
max-width: 60%;
}
@ -538,23 +536,29 @@ onMounted(() => {
display: flex;
flex-direction: column;
align-items: flex-end;
order: 1;
}
.message-bubble {
max-width: 224px;
min-height: 40px;
background: #FFFFFF;
border-radius: 0px 8px 8px 8px;
padding: 8px 12px;
border-radius: 12px;
word-wrap: break-word;
display: inline-block;
width: auto;
}
.message-other .message-bubble {
background-color: #f0f0f0;
border-bottom-left-radius: 4px;
border-radius: 0px 8px 8px 8px;
}
.message-self .message-bubble {
background-color: #1890ff;
color: white;
border-bottom-right-radius: 4px;
background: #E2F5FF;
border-radius: 8px 0px 8px 8px;
color: #333;
}
.message-text {
@ -584,23 +588,22 @@ onMounted(() => {
}
.input-area {
border-top: 1px solid #e6e6e6;
height: 128px;
background: #FFFFFF;
border-radius: 0px 0px 2px 0px;
flex-shrink: 0;
padding: 16px;
}
.input-toolbar {
display: flex;
gap: 8px;
margin-bottom: 8px;
}
.toolbar-btn {
width: 32px;
height: 32px;
border: none;
width: 24px;
height: 20px;
border-radius: 2px;
border: 1px solid #E6E6E6;
background: none;
cursor: pointer;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
@ -610,28 +613,30 @@ onMounted(() => {
background-color: #f5f5f5;
}
.toolbar-btn img {
width: 20px;
height: 20px;
.toolbar-btn img,
.toolbar-icon {
width: 12px;
height: 12px;
object-fit: contain;
}
.input-container {
display: flex;
gap: 8px;
align-items: flex-end;
flex-direction: column;
height: 100%;
}
.input-container textarea {
flex: 1;
padding: 8px 12px;
border: 1px solid #d9d9d9;
border-radius: 6px;
padding: 12px;
border: none;
border-radius: 0;
resize: none;
font-family: inherit;
font-size: 14px;
line-height: 1.4;
min-height: 36px;
max-height: 120px;
background: transparent;
outline: none;
}
.send-btn {
@ -639,7 +644,7 @@ onMounted(() => {
background-color: #1890ff;
color: white;
border: none;
border-radius: 6px;
border-radius: 0;
cursor: pointer;
font-size: 14px;
height: 36px;
@ -653,4 +658,27 @@ onMounted(() => {
.send-btn:not(:disabled):hover {
background-color: #40a9ff;
}
.input-bottom {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: auto;
}
.input-toolbar {
display: flex;
gap: 8px;
}
.send-area {
display: flex;
align-items: center;
gap: 12px;
}
.char-count {
font-size: 12px;
color: #999;
}
</style>

View File

@ -701,12 +701,12 @@ const handleScroll = () => {
documentHeight,
scrollableHeight,
scrollPercentage: scrollPercentage.toFixed(2) + '%',
shouldShow: scrollPercentage >= 80,
shouldShow: scrollPercentage >= 50,
currentShow: showFixedButtons.value
})
// 80%
const shouldShow = scrollPercentage >= 80
// 50%
const shouldShow = scrollPercentage >= 50
if (shouldShow !== showFixedButtons.value) {
showFixedButtons.value = shouldShow
console.log(shouldShow ? '🟢 显示固定按钮组' : '🔴 隐藏固定按钮组')