优化资金

This commit is contained in:
ljx
2025-08-26 19:25:15 +08:00
parent 4e08f7387f
commit c1d6a8d92c
3 changed files with 23 additions and 15 deletions

View File

@ -15,7 +15,7 @@ export const totalAmount = () => {
/**
* 查询项目位置列表
*
*/ export const projectGis = (clientid) => {
*/ export const projectGis = (clientid?: any) => {
return request({
url: '/money/big/screen/project/gis',
method: 'get',
@ -57,7 +57,8 @@ export const totalAmount = () => {
/**
* 支出合同分析
*
*/ export const expensesAnalyze = (clientid) => {
*/
export const expensesAnalyze = (clientid) => {
return request({
url: '/money/big/screen/expenses/analyze',
method: 'get',
@ -79,14 +80,14 @@ export const totalAmount = () => {
export const monthMoney = () => {
return request({
url: '/money/big/screen/monthMoney',
method: 'get',
method: 'get'
});
};
// 现金流
export const monthCash = () => {
return request({
url: '/money/big/screen/monthCash',
method: 'get',
method: 'get'
});
};
// 现金流总和
@ -94,6 +95,6 @@ export const monthCash = () => {
export const cashTotal = () => {
return request({
url: '/money/big/screen/cashTotal',
method: 'get',
method: 'get'
});
};