需求开发

This commit is contained in:
FengHui
2026-05-20 20:50:51 +08:00
parent c74cdf13c2
commit 2175210ea0
8 changed files with 461 additions and 35 deletions

View File

@@ -39,7 +39,7 @@ export const useReadMsg = defineStore('readMsg', () => {
// 未读消息列表
const unreadMsgList = computed(() =>
msgList.value.filter(msg => msg.notReadCount > 0)
msgList.value.filter(msg => msg.isRead == 0)
)