diff --git a/src/views/dashboard/PieChartCreate.vue b/src/views/dashboard/PieChartCreate.vue index 15aada0..08fc36a 100644 --- a/src/views/dashboard/PieChartCreate.vue +++ b/src/views/dashboard/PieChartCreate.vue @@ -42,8 +42,8 @@ 总金额: - {{ NumberDiv(chartData.collectionAllPrice, 10000) }} - {{ chartData.collectionAllPrice }} + {{ Math.floor( NumberDiv(chartData.collectionAllPrice, 10000) * 100) / 100 }} + {{ Math.floor(chartData.collectionAllPrice * 100) / 100 }} 万元 @@ -114,8 +114,9 @@ 总金额: - {{ NumberDiv(chartData.paymentAllPrice, 10000) }} - {{ chartData.paymentAllPrice }} + + {{ Math.floor( NumberDiv(chartData.paymentAllPrice, 10000) * 100) / 100 }} + {{ Math.floor(chartData.paymentAllPrice * 100) / 100 }} 万元 diff --git a/src/views/user/UserCertification/index.vue b/src/views/user/UserCertification/index.vue index 2a116cd..0eb80f6 100644 --- a/src/views/user/UserCertification/index.vue +++ b/src/views/user/UserCertification/index.vue @@ -51,27 +51,30 @@ -