feat(largeScreen): 添加现金流总和接口并更新右侧面板数据

- 在 api/largeScreen/index.js 中添加 cashTotal 接口
- 在 rightPage.vue 中引入 cashTotal 接口并获取数据
- 更新 rightPage.vue 中的现金流数据显示,使用从接口获取的数据
This commit is contained in:
tcy
2025-08-22 17:18:05 +08:00
parent cb6ca3f709
commit 678f10c96b
3 changed files with 21 additions and 7 deletions

View File

@ -20,3 +20,11 @@ export const monthCash = () => {
method: 'get',
});
};
// 现金流总和
export const cashTotal = () => {
return request({
url: '/money/big/screen/cashTotal',
method: 'get',
});
};