fix: 智聪记账管理,新增储蓄卡开卡统计功能代码提交。

This commit is contained in:
tianyongbao
2025-03-05 09:53:34 +08:00
parent 2a1b8daf51
commit 91545b3247
2 changed files with 471 additions and 1 deletions

View File

@@ -96,7 +96,7 @@ export function getPosStatics(query) {
})
}
// 查询记账账户列表
// 查询睡眠账户列表
export function listSleepAccounts(query) {
return request({
url: '/invest/analysis/sleepAccountsList',
@@ -104,3 +104,12 @@ export function listSleepAccounts(query) {
params: query
})
}
// 查询储蓄卡开卡统计数据
export function getOpenCardList(query) {
return request({
url: '/invest/analysis/openCardList',
method: 'get',
params: query
})
}