From 0d12f8c6ac162767efeefd8452a62f4f43142c82 Mon Sep 17 00:00:00 2001 From: wangxy Date: Mon, 23 Aug 2021 16:34:56 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=95=E5=9B=AD=E5=8C=BA=E5=8D=95=E6=9C=88?= =?UTF-8?q?=E6=94=B6=E8=B4=B9=E6=B5=81=E6=B0=B4=E6=95=B0=E6=8D=AE=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reportform/components/LabBarChart.vue | 2 +- src/views/reportform/monthCharge.vue | 26 ++++++++++--------- src/views/reportform/parkOwe.vue | 12 ++++----- 3 files changed, 21 insertions(+), 19 deletions(-) diff --git a/src/views/reportform/components/LabBarChart.vue b/src/views/reportform/components/LabBarChart.vue index aa7fc4a..31e2760 100644 --- a/src/views/reportform/components/LabBarChart.vue +++ b/src/views/reportform/components/LabBarChart.vue @@ -49,7 +49,7 @@ export default { newValue.forEach(item => { this.xDataArray.push(item.Descr) receivableArray.push(item.Persons) - paidArray.push(item.Amount.toFixed(1)) + paidArray.push(item.Amount) }) this.seriesArray.push({ name: '欠费户数', diff --git a/src/views/reportform/monthCharge.vue b/src/views/reportform/monthCharge.vue index c89bce9..4ca8761 100644 --- a/src/views/reportform/monthCharge.vue +++ b/src/views/reportform/monthCharge.vue @@ -48,18 +48,20 @@ 搜索 - - {{ chenQianCharge }} 元 - - - {{ currentCharge }} 元 - - - {{ prepayCharge }} 元 - - - {{ paidInCharge }} 元 - +
+ + {{ chenQianCharge }} 元 + + + {{ currentCharge }} 元 + + + {{ prepayCharge }} 元 + + + {{ paidInCharge }} 元 + +
diff --git a/src/views/reportform/parkOwe.vue b/src/views/reportform/parkOwe.vue index ae719e0..8f24d7f 100644 --- a/src/views/reportform/parkOwe.vue +++ b/src/views/reportform/parkOwe.vue @@ -105,12 +105,12 @@ export default { rowPerson.rowFive = this.dataList[4].Persons rowPerson.rowSix = this.dataList[5].Persons rowMoney.rowZero = '欠费金额(万元)' - rowMoney.rowOne = this.dataList[0].Amount.toFixed(1) - rowMoney.rowTwo = this.dataList[1].Amount.toFixed(1) - rowMoney.rowThree = this.dataList[2].Amount.toFixed(1) - rowMoney.rowFour = this.dataList[3].Amount.toFixed(1) - rowMoney.rowFive = this.dataList[4].Amount.toFixed(1) - rowMoney.rowSix = this.dataList[5].Amount.toFixed(1) + rowMoney.rowOne = this.dataList[0].Amount + rowMoney.rowTwo = this.dataList[1].Amount + rowMoney.rowThree = this.dataList[2].Amount + rowMoney.rowFour = this.dataList[3].Amount + rowMoney.rowFive = this.dataList[4].Amount + rowMoney.rowSix = this.dataList[5].Amount } this.dataListTable[0] = rowPerson this.dataListTable[1] = rowMoney