增加用户在线状态

This commit is contained in:
bob
2024-10-21 16:30:11 +08:00
parent 2aff11bb19
commit e63ee1d62f
5 changed files with 36 additions and 13 deletions

View File

@@ -191,6 +191,7 @@ const sessionListSorted = computed(() => {
// 排序第四优先级:昵称字典序
return a.objectInfo.nickName > b.objectInfo.nickName ? 1 : -1
}
// TODO 还有一个优先级,是在线和不在线的状态
}
}
})