From 7e3c22cabc1160b0bc77c64da4a4786495676fa0 Mon Sep 17 00:00:00 2001 From: zhangdingyu <974548713@qq.com> Date: Mon, 24 Dec 2018 16:59:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=96=E5=8D=8F=E4=BB=98=E6=AC=BE=E8=AE=A1?= =?UTF-8?q?=E5=88=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Outsourcing/OutsourcingPaymentPlanManagement/index.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/views/Outsourcing/OutsourcingPaymentPlanManagement/index.vue b/src/views/Outsourcing/OutsourcingPaymentPlanManagement/index.vue index c874d948..7efe3d73 100644 --- a/src/views/Outsourcing/OutsourcingPaymentPlanManagement/index.vue +++ b/src/views/Outsourcing/OutsourcingPaymentPlanManagement/index.vue @@ -213,7 +213,7 @@ {{ scope.row.发票号 }} - + @@ -426,12 +426,11 @@ export default { }, methods: { getSummaries(param) { - console.log(param) const { columns, data } = param const sums = [] columns.forEach((column, index) => { if (index === 0) { - sums[index] = '总价' + sums[index] = '总金额' return } const values = data.map(item => Number(item[column.property])) @@ -446,7 +445,7 @@ export default { }, 0) sums[index] += ' 元' } else { - sums[index] = 'N/A' + sums[index] = '' } }) return sums