|
|
|
@ -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] || '', |
|
|
|
|