feat: 更新未读消息计数的刷新频率,优化消息视图;添加分类标签显示功能,增强预算卡片的可读性
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 19s
Docker Build & Deploy / Deploy to Production (push) Successful in 13s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s

This commit is contained in:
2026-01-10 23:01:02 +08:00
parent 171febcfb6
commit ad21d20751
6 changed files with 98 additions and 25 deletions

View File

@@ -53,11 +53,11 @@
<div v-else class="detail-content">
{{ currentMessage.content }}
</div>
<div v-if="currentMessage.url" class="detail-footer" style="padding: 16px;">
<van-button type="primary" block @click="handleUrlJump(currentMessage.url)">
<template v-if="currentMessage.url && currentMessage.messageType === 1" #footer>
<van-button type="primary" block round @click="handleUrlJump(currentMessage.url)">
查看详情
</van-button>
</div>
</template>
</PopupContainer>
</div>
</template>
@@ -144,11 +144,6 @@ const viewDetail = async (item) => {
}
}
if (item.messageType === 1) {
handleUrlJump(item.url || item.content);
return;
}
currentMessage.value = item;
detailVisible.value = true;
};