YingXingAI/pages/consultation/index.vue

381 lines
8.7 KiB
Vue
Raw Normal View History

<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"
2025-12-16 14:29:02 +08:00
v-for="(item, index) in displayChatList"
:key="item.id || index"
@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>
2025-12-16 14:29:02 +08:00
<text class="chat-time">{{ item.displayTime }}</text>
</view>
<view class="chat-preview">
2025-12-16 14:29:02 +08:00
<text class="preview-text">{{ item.displayPreview }}</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,
},
2025-12-16 14:29:02 +08:00
computed: {
2025-12-16 14:31:36 +08:00
// 补充展示字段,便于模板直接使用
2025-12-16 14:29:02 +08:00
displayChatList() {
return (this.chatList || []).map((item) => ({
...item,
displayTime: item.lastMessageTime || "",
displayPreview: item.lastMessage || "暂无消息",
}));
},
},
data() {
return {
2025-12-16 14:29:02 +08:00
// 聊天会话列表
chatList: [],
totalCount: 0,
isLoading: false,
hasLoaded: false,
};
},
onLoad() {
// 加载聊天列表
2025-12-16 14:29:02 +08:00
this.loadChatList().finally(() => {
this.hasLoaded = true;
});
},
onShow() {
// 页面显示时刷新列表
2025-12-16 14:29:02 +08:00
if (this.hasLoaded) {
this.refreshChatList();
}
},
methods: {
handleTabChange(path, index) {
console.log("切换到标签页:", path, index);
},
// 打开聊天页面
openChat(item) {
2025-12-16 14:31:36 +08:00
// console.log('打开聊天:', item);
// uni.navigateTo({
// url: `/pages/chat/chat-detail?userId=${item.userId}&name=${item.name}`
// });
const dialogueManagementId = item.dialogueManagementId
const receiverId = item.receiverId
this.$store.dispatch("selectTeacherChatItem", {
dialogueManagementId,
receiverId,
});
},
// 加载聊天列表
2025-12-16 14:29:02 +08:00
async loadChatList() {
if (this.isLoading) return;
this.isLoading = true;
try {
const res = await this.$u.api.GetDialogueListApi();
const list = (res && res.data && res.data.item1) || [];
this.chatList = this.normalizeDialogueList(list);
this.totalCount = res?.data?.item2 || list.length;
} catch (error) {
console.error("[在线咨询] 获取会话列表失败", error);
uni.showToast({
title: "获取会话列表失败",
icon: "none",
});
} finally {
this.isLoading = false;
}
},
// 刷新聊天列表
refreshChatList() {
2025-12-16 14:29:02 +08:00
this.loadChatList();
},
2025-12-16 14:31:36 +08:00
2025-12-16 14:29:02 +08:00
// 规范化接口返回的会话列表数据
normalizeDialogueList(list = []) {
return list.map((item, index) => {
const unread =
typeof item?.unReadCount === "number"
? item.unReadCount
: item?.unreadCount || 0;
return {
id: item?.dialogueManagementId || item?.dialogueId || item?.id || index,
userId: item?.receiverId || item?.friendId || item?.userId || "",
name:
item?.receiverName ||
item?.friendName ||
item?.userName ||
item?.title ||
"",
avatar: this.buildAvatarUrl(
item?.receiverHeadSculptureUrl ||
item?.avatar ||
item?.friendAvatar
),
lastMessage: item?.title || item?.lastMessage || item?.content || "暂无消息",
lastMessageTime: this.formatTime(
item?.lastMessageTime || item?.lastSendTime || item?.startTime
),
unreadCount: unread,
};
});
},
// 拼装头像地址,兼容相对路径
buildAvatarUrl(url) {
const fallback = "/static/avatar/default-avatar.png";
if (!url) return fallback;
if (/^https?:\/\//i.test(url)) return url;
const baseUrl = this.$u?.http?.config?.baseUrl || "";
if (baseUrl) return `${baseUrl}/${url}`;
return url.startsWith("/") ? url : `/${url}`;
},
// 格式化时间显示
formatTime(timeStr) {
if (!timeStr) return "";
const date = new Date(timeStr);
if (!isNaN(date.getTime())) {
const month = (date.getMonth() + 1).toString().padStart(2, "0");
const day = date.getDate().toString().padStart(2, "0");
const hours = date.getHours().toString().padStart(2, "0");
const minutes = date.getMinutes().toString().padStart(2, "0");
return `${month}/${day} ${hours}:${minutes}`;
}
// 回退到字符串裁剪
return String(timeStr).replace("T", " ").slice(5, 16);
},
},
};
</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;
2025-12-16 14:31:36 +08:00
padding: 15px;
background: #fff;
border-bottom: 1rpx solid #f0f0f0;
transition: background-color 0.2s;
}
.chat-item:active {
2025-12-16 14:31:36 +08:00
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;
2025-12-16 14:31:36 +08:00
color: #333;
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.chat-time {
font-size: 12px;
2025-12-16 14:31:36 +08:00
color: #999;
flex-shrink: 0;
}
.chat-preview {
display: flex;
align-items: center;
}
.preview-text {
font-size: 13px;
2025-12-16 14:31:36 +08:00
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>