fix
Some checks failed
Docker Build & Deploy / Build Docker Image (push) Failing after 6s
Docker Build & Deploy / Deploy to Production (push) Has been skipped

This commit is contained in:
孙诚
2025-12-30 18:49:46 +08:00
parent 1f01d13ed3
commit 4b322494ba
9 changed files with 365 additions and 231 deletions

View File

@@ -29,7 +29,7 @@
:transactions="dateTransactions"
:loading="listLoading"
:finished="true"
:show-delete="false"
:show-delete="true"
@click="viewDetail"
/>
</PopupContainer>
@@ -120,7 +120,7 @@ const fetchDateTransactions = async (date) => {
.data
.sort((a, b) => b.amount - a.amount);
// 重置智能分类按钮
smartClassifyButtonRef.value.reset()
smartClassifyButtonRef.value?.reset()
} else {
dateTransactions.value = [];
showToast(response.message || "获取交易列表失败");