From 098a3823f3ca7dbfd9be74933da155e56870115a Mon Sep 17 00:00:00 2001 From: ZhangYong Date: Sun, 5 Apr 2026 16:15:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=9A=E7=BB=A9=E7=BC=96=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/cash/financialAccount.js | 9 + .../financialAccount/performanceAttribution.vue | 229 ++++++++++++++++++++- 2 files changed, 235 insertions(+), 3 deletions(-) diff --git a/src/api/cash/financialAccount.js b/src/api/cash/financialAccount.js index 876797e..ddeb9d1 100644 --- a/src/api/cash/financialAccount.js +++ b/src/api/cash/financialAccount.js @@ -44,3 +44,12 @@ export const exportFunds = (data) => { data }) } + +// 业绩调整 +export const adjustment = (data) => { + return http({ + method: 'POST', + url: '/cashCollection/adjust', + data + }) +} diff --git a/src/views/moneyManage/financialAccount/performanceAttribution.vue b/src/views/moneyManage/financialAccount/performanceAttribution.vue index 3dd6c69..120ce24 100644 --- a/src/views/moneyManage/financialAccount/performanceAttribution.vue +++ b/src/views/moneyManage/financialAccount/performanceAttribution.vue @@ -1,10 +1,10 @@