Browse Source

小数

shibei_master
jiangyy 3 years ago
parent
commit
09695537dd
  1. 7
      src/views/modules/visual/communityGovern/shijianchuli/shijianchulifenxi.vue

7
src/views/modules/visual/communityGovern/shijianchuli/shijianchulifenxi.vue

@ -298,8 +298,7 @@ export default {
await this.getLineChart() await this.getLineChart()
this.dataLoading = false this.dataLoading = false
console.log(this.orgType)
console.log(this.orgId)
// this.assignData() // this.assignData()
@ -425,11 +424,11 @@ export default {
{ {
name: "已完成", name: "已完成",
value: data.closedRatio * 100 value: Math.floor(data.closedRatio * 10000) / 100
}, },
{ {
name: "处理中", name: "处理中",
value: data.processingRatio * 100 value: Math.floor(data.processingRatio * 10000) / 100
}, },
] ]

Loading…
Cancel
Save