From de061e2a473fb240e2431be5250ebef2c6b6069c Mon Sep 17 00:00:00 2001 From: ZhangYong Date: Sun, 18 Jan 2026 09:32:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=9A=E7=BB=A9=E5=BD=92=E5=B1=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/cash/financialAccount.js | 11 ++++++++++- .../moneyManage/financialAccount/performanceAttribution.vue | 8 ++++---- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/api/cash/financialAccount.js b/src/api/cash/financialAccount.js index e01d5df..109259e 100644 --- a/src/api/cash/financialAccount.js +++ b/src/api/cash/financialAccount.js @@ -16,4 +16,13 @@ export const refundOnline = (data) => { url: '/Money/addOnline', data }) -} \ No newline at end of file +} + +// 查询业绩归属 +export const performanceSelect = (data) => { + return http({ + method: 'POST', + url: '/cashCollection/performanceSelect', + data + }) +} diff --git a/src/views/moneyManage/financialAccount/performanceAttribution.vue b/src/views/moneyManage/financialAccount/performanceAttribution.vue index e8ba32a..75c4ffb 100644 --- a/src/views/moneyManage/financialAccount/performanceAttribution.vue +++ b/src/views/moneyManage/financialAccount/performanceAttribution.vue @@ -4,7 +4,7 @@ import { ElMessage, ElMessageBox } from 'element-plus' import request from '@/util/http.js' import dayjs from 'dayjs' import { useI18n } from 'vue-i18n' -import { Moneyfunds,refundOnline } from '@/api/cash/financialAccount.js' +import { Moneyfunds,refundOnline,performanceSelect } from '@/api/cash/financialAccount.js' const { t } = useI18n() @@ -83,7 +83,7 @@ const fetchData = async () => { const params = { pageNum: queryParams.pageNum, pageSize: queryParams.pageSize, - fundsDTO:{ + performanceDTO:{ jwcode: queryParams.jwcode, markets: queryParams.markets, startTime: queryParams.timeRange?.[0] || '', @@ -95,7 +95,7 @@ const fetchData = async () => { } console.log('查询参数:', params) - const res = await Moneyfunds(params) + const res = await performanceSelect(params) if (res.code == 200) { tableData.value = res.data.list || [] total.value = res.data.total || 0 @@ -163,7 +163,7 @@ const handleExport = async () => { const params = { pageNum: queryParams.pageNum, pageSize: queryParams.pageSize, - fundsDTO:{ + performanceDTO:{ jwcode: queryParams.jwcode, markets: queryParams.markets, startTime: queryParams.timeRange?.[0] || '',