实现消息记录功能,包括增删改查和标记已读,优化消息列表展示和未读消息计数
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 22s
Docker Build & Deploy / Deploy to Production (push) Successful in 6s

This commit is contained in:
孙诚
2025-12-29 14:18:09 +08:00
parent e613c88770
commit 13bf23a48c
12 changed files with 664 additions and 35 deletions

View File

@@ -297,7 +297,6 @@ const loadData = async (isRefresh = false) => {
// 下拉刷新
const onRefresh = () => {
finished.value = false
lastId.value = null
transactionList.value = []
loadData(false)
}
@@ -315,8 +314,6 @@ const onSearchChange = () => {
const onSearch = () => {
// 重置分页状态并刷新数据
lastId.value = null
lastTime.value = null
transactionList.value = []
finished.value = false
loadData(true)