Compare commits

..

No commits in common. "6d663d3d0187dea275d36f7e535c7be21c6499d7" and "1edb639ad9e5eab8dae4c3bbef1e04a11b88d9f4" have entirely different histories.

3 changed files with 10 additions and 4 deletions

View File

@ -108,8 +108,8 @@ export function useSessionMenu() {
const onUserInfo = (item: ISession) => {
console.error('item',item)
user(item.id)
debugger
user(item.receiver_id)
}
// 移除会话

View File

@ -298,6 +298,13 @@ const items = computed((): ISession[] => {
return [...topItems, ...normalItems]
})
watch(
() => talkStore,
(newValue, oldValue) => {
// console.log(newValue)
},
{ deep: true, immediate: true }
)
watch(
() => state.addressBookSearchNickName,
(newValue, oldValue) => {

View File

@ -324,14 +324,13 @@ const retry=(item:any)=>{
}
const onContextMenuAvatar=(e:any,item:any)=>{
console.log('item',item)
e.preventDefault()
if(item.float!=='right'){
bus.emit(EditorConst.Mention, {
id: item.user_id,
value: item.nickname
})
}
}
</script>