This commit is contained in:
tcy
2025-08-22 19:01:55 +08:00
parent 26e1493aa7
commit 8f9b042941
7 changed files with 106 additions and 124 deletions

View File

@ -74,3 +74,26 @@ export const totalAmount = () => {
params: clientid
});
};
// 资金KPI
export const monthMoney = () => {
return request({
url: '/money/big/screen/monthMoney',
method: 'get',
});
};
// 现金流
export const monthCash = () => {
return request({
url: '/money/big/screen/monthCash',
method: 'get',
});
};
// 现金流总和
export const cashTotal = () => {
return request({
url: '/money/big/screen/cashTotal',
method: 'get',
});
};