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