Merge remote-tracking branch 'origin/dev-wdb' into dev-hjf

This commit is contained in:
Jafeng 2026-02-04 11:29:40 +08:00
commit f0722190c0
5 changed files with 237 additions and 48 deletions

View File

@ -1,5 +1,5 @@
<template>
<view class="flex flex-col items-center justify-center rounded-circle overflow-hidden bg-gray border"
<view :class="['flex', 'flex-col', 'items-center', 'justify-center', 'overflow-hidden', 'bg-gray', 'border', { 'rounded-circle': classType === 'circle' }]"
:style="`width:${size.lg}rpx; height: ${size.lg}rpx;`" @click="reGenerate()">
<view v-for="(item, index) in groups.list" :key="index" class="flex justify-center">
<image v-for="(url, idx) in item" :key="idx" :src="url" :style="groups.style"></image>
@ -17,6 +17,11 @@ const props = defineProps({
type: Array,
default: () => []
// default: ()=>new Array(9).fill('https://picsum.photos/300/300')
},
classType: {
type: String,
default: 'circle',
validator: (value) => ['circle', 'square'].includes(value)
}
})

View File

@ -3,38 +3,70 @@
<view :style="{ height: statusBarHeight }" class="status-bar"></view>
<view class="relative z-3 flex items-center px-15 py-12 header-bar">
<view class="flex-shrink-0 mr-5">
<group-avatar :size="120" :avatarList="currentTeam ? currentTeam.avatarList : []" />
<group-avatar
:size="120"
:avatarList="currentTeam ? currentTeam.avatarList : []"
/>
</view>
<view class="w-0 flex-grow ">
<view class="w-0 flex-grow">
<view class="flex items-center mb-10">
<view class="team-name flex-shrink-0">{{ team.name }}</view>
<view v-if="teams.length > 1" class="flex-shrink-0 flex items-center switch-btn ml-10"
@click="showDropDown = true">
<image class="switch-icon" src="/static/home/switch-team.png" mode="aspectFit"></image>
<view
v-if="teams.length > 1"
class="flex-shrink-0 flex items-center switch-btn ml-10"
@click="showDropDown = true"
>
<image
class="switch-icon"
src="/static/home/switch-team.png"
mode="aspectFit"
></image>
</view>
</view>
<view v-if="currentTeam" class="text-base text-white truncate">{{ currentTeam.corpName }}</view>
<view v-if="currentTeam" class="text-base text-white truncate">{{
currentTeam.corpName
}}</view>
</view>
<view v-if="menuButtonInfo && menuButtonInfo.width > 0" class="flex-shrink-0"
:style="{ width: menuButtonInfo.width + 'px', height: menuButtonInfo.height + 'px' }">
<view
v-if="menuButtonInfo && menuButtonInfo.width > 0"
class="flex-shrink-0"
:style="{
width: menuButtonInfo.width + 'px',
height: menuButtonInfo.height + 'px',
}"
>
</view>
</view>
<view class="relative">
<view v-if="showDropDown" class="team-dropdown py-12 bg-white shadow-lg">
<scroll-view scroll-y="true" style="max-height: 50vh;">
<scroll-view scroll-y="true" style="max-height: 50vh">
<view class="px-15">
<view v-for="item in teams" :key="item.teamId" class="mb-10 p-10 flex items-center bg-gray rounded-sm"
@click="select(item)">
<view class="flex-shrink-0 mr-5">
<view
v-for="item in teams"
:key="item.teamId"
class="mb-10 p-10 flex items-center bg-gray rounded-sm"
@click="select(item)"
>
<view class="flex-shrink-0 mr-5 rounded-circle">
<group-avatar :size="96" :avatarList="item.avatarList" />
</view>
<view class="w-0 flex-grow mr-5">
<view class="mb-5 text-lg font-semibold text-dark">{{ item.name }}</view>
<view class="text-base text-gray leading-normal">{{ item.corpName }}</view>
<view class="mb-5 text-lg font-semibold text-dark">{{
item.name
}}</view>
<view class="text-base text-gray leading-normal">{{
item.corpName
}}</view>
</view>
<view class="flex">
<image class="check-icon"
:src="team && team.teamId === item.teamId ? '/static/form/checked.svg' : '/static/form/unchecked.svg'">
<image
class="check-icon"
:src="
team && team.teamId === item.teamId
? '/static/form/checked.svg'
: '/static/form/unchecked.svg'
"
>
</image>
</view>
</view>
@ -48,54 +80,71 @@
<view class="triangle-wrapper">
<view class="team-triangle"></view>
</view>
<image class="laba-icon flex-shrink-0" src="/static/home/speaker-intro.png" mode="aspectFit"></image>
<view class="introduce-text flex-grow line-clamp-2">{{ team.teamTroduce }}</view>
<image
class="laba-icon flex-shrink-0"
src="/static/home/speaker-intro.png"
mode="aspectFit"
></image>
<view class="introduce-text flex-grow line-clamp-2">{{
team.teamTroduce
}}</view>
</view>
</view>
</view>
<view v-if="showDropDown" class="mask" @click="showDropDown = false"></view>
</template>
<script setup>
import { computed, ref, onMounted, watch } from 'vue';
import { computed, ref, onMounted, watch } from "vue";
import groupAvatar from '@/components/group-avatar.vue';
import groupAvatar from "@/components/group-avatar.vue";
const statusBarHeight = ref('50px');
const statusBarHeight = ref("50px");
const menuButtonInfo = ref(null);
const showDropDown = ref(false)
const showDropDown = ref(false);
const emits = defineEmits(['changeTeam']);
const emits = defineEmits(["changeTeam"]);
const props = defineProps({
team: {
type: Object,
default: () => ({})
default: () => ({}),
},
teams: {
type: Array,
default: () => []
}
})
default: () => [],
},
});
const currentTeam = computed(() => props.teams.find(i => props.team && i.teamId === props.team.teamId))
const currentTeam = computed(() =>
props.teams.find((i) => props.team && i.teamId === props.team.teamId)
);
function select(team) {
emits('changeTeam', team)
showDropDown.value = false
emits("changeTeam", team);
showDropDown.value = false;
}
watch(() => props.teams, (teams) => {
if (teams.length && !(currentTeam.value && teams.some(i => i.teamId === currentTeam.value.teamId))) {
emits('changeTeam', teams[0])
watch(
() => props.teams,
(teams) => {
if (
teams.length &&
!(
currentTeam.value &&
teams.some((i) => i.teamId === currentTeam.value.teamId)
)
) {
emits("changeTeam", teams[0]);
}
}
})
);
onMounted(() => {
const win = uni.getWindowInfo();
if (win && win.statusBarHeight > 0) {
statusBarHeight.value = win.statusBarHeight + 'px';
statusBarHeight.value = win.statusBarHeight + "px";
}
menuButtonInfo.value = uni.getMenuButtonBoundingClientRect();
})
});
</script>
<style scoped>
.status-bar {
@ -146,7 +195,11 @@ onMounted(() => {
width: 690rpx;
min-height: 111rpx;
box-sizing: border-box;
background: linear-gradient(186deg, rgba(255, 255, 255, 0.4) 13.34%, rgba(255, 255, 255, 0.6) 99.17%);
background: linear-gradient(
186deg,
rgba(255, 255, 255, 0.4) 13.34%,
rgba(255, 255, 255, 0.6) 99.17%
);
border-radius: 16rpx;
padding: 20rpx 20rpx 20rpx 0;
position: relative;
@ -170,7 +223,11 @@ onMounted(() => {
bottom: -10rpx;
width: 16rpx;
height: 16rpx;
background: linear-gradient(186deg, rgba(255, 255, 255, 0.4) 13.34%, rgba(255, 255, 255, 0.6) 99.17%);
background: linear-gradient(
186deg,
rgba(255, 255, 255, 0.4) 13.34%,
rgba(255, 255, 255, 0.6) 99.17%
);
transform: translateX(-50%) rotate(45deg);
}
@ -223,4 +280,8 @@ onMounted(() => {
border-bottom-left-radius: 16rpx;
border-bottom-right-radius: 16rpx;
}
.rounded-circle {
border-radius: 50%;
}
</style>

View File

@ -0,0 +1,107 @@
import { ref, computed } from 'vue'
import api from '@/utils/api.js'
import useTeamStore from '@/store/team.js'
/**
* 群聊头像管理hook - 为消息列表中的每个群聊获取成员头像
* 用于在消息列表中显示群聊的group-avatar组件
*/
export default function useGroupAvatars() {
const groupAvatarMap = ref({}) // { groupID: [avatarUrl1, avatarUrl2, ...] }
const teamStore = useTeamStore()
const patientDefaultAvatar = '/static/default-avatar.png'
/**
* 获取单个群聊的头像列表
* @param {string} groupID 群组ID
* @param {string} teamId 团队ID
* @param {string} patientId 患者ID
* @returns {Promise<Array>} 头像URL数组
*/
async function getGroupAvatarList(groupID, teamId, patientId) {
try {
if (!teamId) {
console.warn(`群聊 ${groupID} 没有 teamId无法获取头像`)
return [patientDefaultAvatar]
}
// 获取团队成员的头像和名称
const memberMap = await teamStore.getTeamMemberAvatarsAndName(teamId)
if (!memberMap || Object.keys(memberMap).length === 0) {
console.warn(`群聊 ${groupID} 的团队成员为空`)
return [patientDefaultAvatar]
}
// 提取头像列表(过滤掉空头像,使用默认头像替代)
const avatarList = Object.values(memberMap)
.map(member => {
// 如果成员有头像且不为空,使用成员头像;否则使用默认头像
return (member.avatar && member.avatar.trim() !== '')
? member.avatar
: patientDefaultAvatar
})
// 添加患者默认头像
avatarList.push(patientDefaultAvatar)
console.log(`群聊 ${groupID} 的头像列表已加载,共 ${avatarList.length} 个头像`)
return avatarList
} catch (error) {
console.error(`获取群聊 ${groupID} 的头像列表失败:`, error)
return [patientDefaultAvatar]
}
}
/**
* 批量获取多个群聊的头像列表
* @param {Array} conversationList 会话列表
* @returns {Promise<void>}
*/
async function loadGroupAvatars(conversationList) {
if (!conversationList || conversationList.length === 0) {
return
}
try {
// 并发加载所有群聊的头像
const promises = conversationList.map(async (conversation) => {
const avatarList = await getGroupAvatarList(
conversation.groupID,
conversation.teamId,
conversation.patientId
)
groupAvatarMap.value[conversation.groupID] = avatarList
})
await Promise.all(promises)
console.log('所有群聊头像加载完成')
} catch (error) {
console.error('批量加载群聊头像失败:', error)
}
}
/**
* 获取指定群聊的头像列表
* @param {string} groupID 群组ID
* @returns {Array} 头像URL数组
*/
function getAvatarList(groupID) {
return groupAvatarMap.value[groupID] || [patientDefaultAvatar]
}
/**
* 清空缓存
*/
function clearCache() {
groupAvatarMap.value = {}
}
return {
groupAvatarMap,
getGroupAvatarList,
loadGroupAvatars,
getAvatarList,
clearCache
}
}

View File

@ -24,10 +24,10 @@
@click="handleClickConversation(conversation)"
>
<view class="avatar-container">
<image
class="avatar"
:src="conversation.avatar || '/static/default-avatar.png'"
mode="aspectFill"
<GroupAvatar
:avatarList="getAvatarList(conversation.groupID)"
:size="96"
classType="square"
/>
<view v-if="conversation.unreadCount > 0" class="unread-badge">
<text class="unread-text">{{
@ -81,6 +81,8 @@ import { storeToRefs } from "pinia";
import useAccountStore from "@/store/account.js";
import { globalTimChatManager } from "@/utils/tim-chat.js";
import { mergeConversationWithGroupDetails } from "@/utils/conversation-merger.js";
import useGroupAvatars from "./hooks/use-group-avatars.js";
import GroupAvatar from "@/components/group-avatar.vue";
//
const { account, openid, isIMInitialized } = storeToRefs(useAccountStore());
@ -93,6 +95,9 @@ const loadingMore = ref(false);
const hasMore = ref(false);
const refreshing = ref(false);
//
const { loadGroupAvatars, getAvatarList } = useGroupAvatars();
// IM
const initIM = async () => {
console.log("=== message.vue initIM 开始 ===");
@ -184,7 +189,14 @@ const loadConversationList = async () => {
conversationList.value = await mergeConversationWithGroupDetails(
result.groupList
);
console.log("群聊列表加载成功,共", conversationList.value, "个会话");
console.log(
"群聊列表加载成功,共",
conversationList.value.length,
"个会话"
);
//
await loadGroupAvatars(conversationList.value);
} else {
console.error("加载群聊列表失败:", result);
uni.showToast({
@ -291,7 +303,10 @@ const setupConversationListener = () => {
//
avatar: existing.avatar || conversationData.avatar,
//
unreadCount: Math.max(existing.unreadCount || 0, conversationData.unreadCount || 0)
unreadCount: Math.max(
existing.unreadCount || 0,
conversationData.unreadCount || 0
),
};
needSort = true;
console.log(
@ -331,11 +346,11 @@ const setupConversationListener = () => {
//
const pages = getCurrentPages();
const currentPage = pages[pages.length - 1];
// groupID
const currentGroupID = currentPage?.options?.groupID;
const isViewingThisConversation =
currentPage?.route === "pages/message/index" &&
const isViewingThisConversation =
currentPage?.route === "pages/message/index" &&
currentGroupID === conversation.groupID;
//
@ -533,6 +548,7 @@ onHide(() => {
.avatar-container {
position: relative;
margin-right: 24rpx;
flex-shrink: 0;
}
.avatar {

0
static/doctor-avatar.png Normal file
View File