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