fix: 日常支出统计,bug修复。

This commit is contained in:
tianyongbao
2024-07-16 15:32:43 +08:00
parent b6fb4c62b2
commit cafb2b37c2

View File

@@ -191,7 +191,7 @@ const start = today.getFullYear() + '-' + ('0' + (today.getMonth() + 1)).slice(-
function getList() { function getList() {
getDailyExpensesAnalysis({...queryParams.value }).then(res => { getDailyExpensesAnalysis({...queryParams.value }).then(res => {
account.value = { ...res.data } account.value = { ...res.data }
listData.value = listData.value.concat(res.data.tableAccountsList) listData.value = listData.value.concat(res.data.accountsList)
}).catch(() => { }).catch(() => {
}) })
} }