From 4381bdca90874ec1dc31ca817cec4d3705411205 Mon Sep 17 00:00:00 2001 From: lijiarao Date: Fri, 2 Aug 2024 16:17:56 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E5=85=A8=E6=89=80=E6=94=B6=E5=85=A5?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1=20=E6=94=B9=E4=B8=BA=E9=A2=84=E4=BC=B0?= =?UTF-8?q?=E6=94=B6=E5=85=A5=E9=87=91=E9=A2=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/statisticalReport/WholePaymentsStatistics.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/statisticalReport/WholePaymentsStatistics.vue b/src/views/statisticalReport/WholePaymentsStatistics.vue index f037ecb..a47d9b3 100644 --- a/src/views/statisticalReport/WholePaymentsStatistics.vue +++ b/src/views/statisticalReport/WholePaymentsStatistics.vue @@ -159,9 +159,9 @@ export default { getAction(this.url.list, params).then((res) => { if (res.success) { let dataSource = res.result.list - // 讲树形结构的数据 ,修改成table可以直接展示的数据,默认只有三行数据 + // 讲树形结构的数据 ,修改成table可以直接展示的数据,默认只有三行数据 todo let tableData = [ - {indexName: '年度待确收金额', total: res.result.sumOfMoney}, + {indexName: '预估收入金额', total: res.result.sumOfMoney}, {indexName: '确认收入金额', total: res.result.sumOfConfirmAmount}, {indexName: '开票金额', total: res.result.sumOfBillMoney}, {indexName: '到账金额', total: res.result.sumOfReallyMoney}, @@ -171,7 +171,7 @@ export default { let keyItem = MonthData.find(ele => Number(ele.value) === (index + 1)) if(keyItem) { let key = keyItem.key - tableData[0][key] = item.allMoney + tableData[0][key] = item.estimatedArrivalMoney // todo tableData[1][key] = item.confirmAmount tableData[2][key] = item.billMoney tableData[3][key] = item.comeAllMoney