统计字段修改

This commit is contained in:
zhaoxiao
2021-09-24 15:37:48 +08:00
parent b3c8a529c6
commit cb3ea0e11b
2 changed files with 4 additions and 4 deletions
@@ -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) {
@@ -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
}
})
},