Commit c85d412b67954dd13b68b6200ca53bc69e6906b2
1 parent
cfe5241c
正式地址
Showing
2 changed files
with
5 additions
and
5 deletions
src/components/headerCommon.vue
src/views/youdaopingsection.vue
@@ -63,10 +63,10 @@ export default { | @@ -63,10 +63,10 @@ export default { | ||
63 | orgIds: this.GLOBAL.paramsvariables | 63 | orgIds: this.GLOBAL.paramsvariables |
64 | }).then((response)=>{ | 64 | }).then((response)=>{ |
65 | const data = response.data.data | 65 | const data = response.data.data |
66 | - this.wxNum = (data.wxPay/100).toFixed(0) | ||
67 | - this.zfbNum = (data.aliPay/100).toFixed(0) | ||
68 | - this.qtNum = (data.otherPay/100).toFixed(0) | ||
69 | - this.xjNum = ((data.totalPay - data.aliPay - data.wxPay - data.otherPay)/100).toFixed(0) | 66 | + this.wxNum = Math.round(data.wxPay/100) |
67 | + this.zfbNum = Math.round(data.aliPay/100) | ||
68 | + this.qtNum = Math.round(data.otherPay/100) | ||
69 | + this.xjNum = Math.round((data.totalPay - data.aliPay - data.wxPay - data.otherPay)/100) | ||
70 | // this.dzNum = data[3].num | 70 | // this.dzNum = data[3].num |
71 | // this.ydpNum = data[2].num | 71 | // this.ydpNum = data[2].num |
72 | // this.pieChartData = [data[3].num,data[2].num] | 72 | // this.pieChartData = [data[3].num,data[2].num] |