nvue直播间需要调整分享样式

This commit is contained in:
bobobobo
2026-02-03 00:45:33 +08:00
parent 10ceb6b476
commit ae36c4cf10
393 changed files with 753 additions and 147 deletions

View File

@@ -42,6 +42,7 @@
TUIStore
} from '@tencentcloud/chat-uikit-engine-lite'
import { FriendListData } from '../../../../interface'
import { setFriendList } from '../../../../../utils/storage'
const emits = defineEmits(['enterConversation'])
@@ -58,6 +59,9 @@
friend.remark || friend.profile?.nick || friend.userID || ''
)
// #ifdef APP-PLUS
setFriendList(friendList)
// #endif
friendListData.value.map = groupedList
}

View File

@@ -134,6 +134,7 @@
FriendApplication
} from '@tencentcloud/chat-uikit-engine-lite'
import { navigateTo } from '../../../../utils/router'
import { setGroupList } from '../../../../utils/storage'
const currentContactListKey = ref<keyof IContactList>('')
const currentContactInfo = ref<IContactInfoType>({} as IContactInfoType)
@@ -358,6 +359,9 @@
}
function onGroupListUpdated(groupList: IGroupModel[]) {
// #ifdef APP-PLUS
setGroupList(groupList)
// #endif
updateContactListMap('groupList', groupList)
}