From cb3ea0e11b3bf8dec8e00b54c3674d7a101ea582 Mon Sep 17 00:00:00 2001 From: zhaoxiao Date: Fri, 24 Sep 2021 15:37:48 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E5=AD=97=E6=AE=B5=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../EnterprisePaymentStatisticsDetail.vue | 2 +- .../EnterprisePaymentStatisticsList.vue | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/statisticalReport/enterprisePaymentStatistics/EnterprisePaymentStatisticsDetail.vue b/src/views/statisticalReport/enterprisePaymentStatistics/EnterprisePaymentStatisticsDetail.vue index f9b326d..2a45b42 100644 --- a/src/views/statisticalReport/enterprisePaymentStatistics/EnterprisePaymentStatisticsDetail.vue +++ b/src/views/statisticalReport/enterprisePaymentStatistics/EnterprisePaymentStatisticsDetail.vue @@ -260,7 +260,7 @@ export default { } let params = this.getQueryParams()//查询条件 // 企业id - params.chargeCompanyTemporaryId = this.$route.query.chargeCompanyId + params.chargeCompanyId = this.$route.query.chargeCompanyId this.loading = true getAction(this.url.list, params).then((res) => { if (res.success) { diff --git a/src/views/statisticalReport/enterprisePaymentStatistics/EnterprisePaymentStatisticsList.vue b/src/views/statisticalReport/enterprisePaymentStatistics/EnterprisePaymentStatisticsList.vue index 666319e..13bbd08 100644 --- a/src/views/statisticalReport/enterprisePaymentStatistics/EnterprisePaymentStatisticsList.vue +++ b/src/views/statisticalReport/enterprisePaymentStatistics/EnterprisePaymentStatisticsList.vue @@ -143,7 +143,7 @@ export default { }, { title: '来款企业', align: 'center', - dataIndex: 'chargeCompanyTemporaryName', + dataIndex: 'chargeCompanyName', scopedSlots: { customRender: 'text' } }, { title: '应收总金额', @@ -176,7 +176,7 @@ export default { }, { title: '来款企业', align: 'center', - dataIndex: 'chargeCompanyTemporaryName', + dataIndex: 'chargeCompanyName', scopedSlots: { customRender: 'text' } }, { title: '应收总金额', @@ -217,7 +217,7 @@ export default { this.$router.push({ path: '/statisticalReport/enterprisePaymentStatistics/EnterprisePaymentStatisticsDetail', query: { - chargeCompanyId: record.chargeCompanyTemporaryId + chargeCompanyId: record.chargeCompanyId } }) },