修复某些情况取消星标不同步

This commit is contained in:
eoao
2025-06-28 21:35:43 +08:00
parent 2bef5ee0f6
commit 99bbdb3df1
6 changed files with 16 additions and 12 deletions

View File

@@ -267,16 +267,18 @@ watch(() => emailStore.deleteIds, () => {
}
})
watch(() => emailStore.cancelStarEmailId, () => {
emailList.forEach(email => {
if (email.emailId === emailStore.cancelStarEmailId) {
email.isStar = 0
}
})
})
const accountShow = computed(() => {
return uiStore.accountShow && settingStore.settings.manyEmail === 0
})
function formateReceive(recipient) {
recipient = JSON.parse(recipient)
return recipient.map(item => item.address).join(', ')
}
function handleScroll(e) {
}