347 lines
7.3 KiB
Vue
347 lines
7.3 KiB
Vue
<template>
|
|
<view class="page-container">
|
|
<view class="page-header">
|
|
<PageHeader title="在线咨询" :is-back="false" :border-bottom="false" />
|
|
</view>
|
|
|
|
<scroll-view
|
|
class="page-main"
|
|
scroll-y
|
|
enable-back-to-top
|
|
>
|
|
<view class="main-content">
|
|
<!-- 聊天会话列表 -->
|
|
<view
|
|
class="chat-item"
|
|
v-for="(item, index) in chatList"
|
|
:key="item.id"
|
|
@click="openChat(item)"
|
|
>
|
|
<view class="chat-avatar-wrapper">
|
|
<image class="chat-avatar" :src="item.avatar"></image>
|
|
<!-- 未读数角标 -->
|
|
<view class="unread-badge" v-if="item.unreadCount > 0">
|
|
{{ item.unreadCount > 99 ? '99+' : item.unreadCount }}
|
|
</view>
|
|
</view>
|
|
|
|
<view class="chat-content">
|
|
<view class="chat-header">
|
|
<text class="chat-name">{{ item.name }}</text>
|
|
<text class="chat-time">{{ item.lastMessageTime }}</text>
|
|
</view>
|
|
<view class="chat-preview">
|
|
<text class="preview-text">{{ item.lastMessage }}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 无数据提示 -->
|
|
<view class="empty-container" v-if="chatList.length === 0">
|
|
<image class="empty-image" src="/static/common/icon/empty-chat.png"></image>
|
|
<text class="empty-text">暂无咨询消息</text>
|
|
<text class="empty-hint">学生咨询后会显示在这里</text>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
|
|
<view class="page-tabbar">
|
|
<TabBar :currentPath="'/pages/consultation/index'" @change="handleTabChange" />
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import TabBar from "@/components/TabBar-optimized.vue";
|
|
import PageHeader from "@/components/PageHeader.vue";
|
|
|
|
export default {
|
|
name: "ConsultationPage",
|
|
components: {
|
|
TabBar,
|
|
PageHeader,
|
|
},
|
|
data() {
|
|
return {
|
|
// 聊天会话列表(模拟数据)
|
|
chatList: [
|
|
{
|
|
id: 1,
|
|
userId: 'user_001',
|
|
name: '山东考生1',
|
|
avatar: '/static/avatar/default-avatar.png',
|
|
lastMessage: '你好,在吗',
|
|
lastMessageTime: '09:50',
|
|
unreadCount: 2,
|
|
},
|
|
{
|
|
id: 2,
|
|
userId: 'user_002',
|
|
name: '河北考生2',
|
|
avatar: '/static/avatar/default-avatar.png',
|
|
lastMessage: '我是保研的是否了解到了后续计划,谁信谁的呢们爱国士...',
|
|
lastMessageTime: '09:50',
|
|
unreadCount: 0,
|
|
},
|
|
{
|
|
id: 3,
|
|
userId: 'user_003',
|
|
name: '山东考生34523',
|
|
avatar: '/static/avatar/default-avatar.png',
|
|
lastMessage: '请问,学校宿舍几人间?',
|
|
lastMessageTime: '09:50',
|
|
unreadCount: 1,
|
|
},
|
|
{
|
|
id: 4,
|
|
userId: 'user_004',
|
|
name: '招办王老师',
|
|
avatar: '/static/avatar/default-avatar.png',
|
|
lastMessage: '你好,在吗',
|
|
lastMessageTime: '09:50',
|
|
unreadCount: 0,
|
|
},
|
|
{
|
|
id: 5,
|
|
userId: 'user_005',
|
|
name: '山东考生34523',
|
|
avatar: '/static/avatar/default-avatar.png',
|
|
lastMessage: '请问,学校宿舍几人间?',
|
|
lastMessageTime: '09:50',
|
|
unreadCount: 3,
|
|
},
|
|
{
|
|
id: 6,
|
|
userId: 'user_006',
|
|
name: '招办王老师',
|
|
avatar: '/static/avatar/default-avatar.png',
|
|
lastMessage: '你好,在吗',
|
|
lastMessageTime: '09:50',
|
|
unreadCount: 0,
|
|
},
|
|
],
|
|
};
|
|
},
|
|
|
|
onLoad() {
|
|
// 加载聊天列表
|
|
this.loadChatList();
|
|
},
|
|
|
|
onShow() {
|
|
// 页面显示时刷新列表
|
|
this.refreshChatList();
|
|
},
|
|
|
|
methods: {
|
|
handleTabChange(path, index) {
|
|
console.log("切换到标签页:", path, index);
|
|
},
|
|
|
|
// 打开聊天页面
|
|
openChat(item) {
|
|
console.log('打开聊天:', item);
|
|
uni.navigateTo({
|
|
url: `/pages/chat/chat-detail?userId=${item.userId}&name=${item.name}`
|
|
});
|
|
},
|
|
|
|
// 加载聊天列表
|
|
loadChatList() {
|
|
// TODO: 接入真实API
|
|
// this.$u.api.getChatList().then(res => {
|
|
// this.chatList = res.data;
|
|
// });
|
|
|
|
console.log('[在线咨询] 加载聊天列表');
|
|
},
|
|
|
|
// 刷新聊天列表
|
|
refreshChatList() {
|
|
console.log('[在线咨询] 刷新聊天列表');
|
|
// TODO: 刷新数据
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
/* ===== 页面容器 - 主流三段式布局 ===== */
|
|
.page-container {
|
|
/* 固定定位,占满整个视口 */
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
|
|
/* Flex 布局 */
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
/* 背景色 */
|
|
background-color: #f5f6fa;
|
|
|
|
/* 防止溢出 */
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* ===== 头部导航 ===== */
|
|
.page-header {
|
|
/* 不收缩,固定高度 */
|
|
flex-shrink: 0;
|
|
|
|
/* 层级 */
|
|
z-index: 100;
|
|
}
|
|
|
|
/* ===== 内容区域 ===== */
|
|
.page-main {
|
|
/* 占据剩余空间 */
|
|
flex: 1;
|
|
|
|
/* 重要:防止 flex 子元素溢出 */
|
|
height: 0;
|
|
|
|
/* 允许滚动 */
|
|
overflow-y: auto;
|
|
|
|
/* iOS 滚动优化 */
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
/* ===== 内容内层 ===== */
|
|
.main-content {
|
|
/* 内边距 */
|
|
padding: 10px;
|
|
|
|
/* 底部留出 TabBar 空间 + 安全区域 */
|
|
padding-bottom: calc(50px + env(safe-area-inset-bottom) + 10px);
|
|
|
|
/* 最小高度(确保可以滚动) */
|
|
min-height: 100%;
|
|
}
|
|
|
|
/* ===== 底部导航 ===== */
|
|
.page-tabbar {
|
|
/* 不收缩,固定高度 */
|
|
flex-shrink: 0;
|
|
|
|
/* 层级 */
|
|
z-index: 100;
|
|
}
|
|
|
|
/* ===== 聊天列表项 ===== */
|
|
.chat-item {
|
|
display: flex;
|
|
padding: 15px;
|
|
background: #fff;
|
|
border-bottom: 1rpx solid #f0f0f0;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.chat-item:active {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.chat-avatar-wrapper {
|
|
position: relative;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
.chat-avatar {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 8px;
|
|
background-color: #e8e8e8;
|
|
}
|
|
|
|
.unread-badge {
|
|
position: absolute;
|
|
top: -5px;
|
|
right: -5px;
|
|
min-width: 18px;
|
|
height: 18px;
|
|
padding: 0 5px;
|
|
background: #ff4d4f;
|
|
border-radius: 9px;
|
|
color: #fff;
|
|
font-size: 11px;
|
|
line-height: 18px;
|
|
text-align: center;
|
|
border: 2px solid #fff;
|
|
}
|
|
|
|
.chat-content {
|
|
flex: 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.chat-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.chat-name {
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
color: #333;
|
|
max-width: 200px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.chat-time {
|
|
font-size: 12px;
|
|
color: #999;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.chat-preview {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.preview-text {
|
|
font-size: 13px;
|
|
color: #999;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
flex: 1;
|
|
}
|
|
|
|
/* ===== 空状态 ===== */
|
|
.empty-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 100px 20px;
|
|
}
|
|
|
|
.empty-image {
|
|
width: 120px;
|
|
height: 120px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.empty-text {
|
|
font-size: 16px;
|
|
color: #666;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.empty-hint {
|
|
font-size: 13px;
|
|
color: #999;
|
|
}
|
|
</style>
|
|
|