This commit is contained in:
PC-202306242200\Administrator
2024-11-13 09:58:47 +08:00
parent e3fed43cd6
commit 24b01dc283
23 changed files with 543 additions and 27 deletions

View File

@@ -83,3 +83,25 @@ export async function findPage(body) {
});
}
export async function amountPage(body) {
return request('/stats/amount/page', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body || {},
});
}
export async function amountExport(body) {
return request('/stats/amount/export', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body || {},
responseType: 'blob'
});
}