|
@@ -188,8 +188,6 @@ export default {
|
|
|
x++
|
|
|
}
|
|
|
}
|
|
|
- console.log(lastYear,'lastYear')
|
|
|
- console.log(nowYear,'nowYear')
|
|
|
let balance = lastYear.concat(nowYear)
|
|
|
this.balance = balance.map((item)=>{
|
|
|
// let value = item.value/10000
|
|
@@ -205,7 +203,7 @@ export default {
|
|
|
return {
|
|
|
"date":item.date,
|
|
|
"name":this.$t(item.name),
|
|
|
- "value":Math.round(((item.value *100)*100)/100)
|
|
|
+ "value":Math.round((item.value *100)*100)/100
|
|
|
}
|
|
|
})
|
|
|
this.chartCustomerLine.changeData([this.balance,this.tbzzl])
|