Browse Source

feat: :sparkles: 圆形进度图保留两位小数

chaooo 2 năm trước cách đây
mục cha
commit
4d7c80b5dc
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/components/Charts/CircleChart.vue

+ 1 - 1
src/components/Charts/CircleChart.vue

@@ -63,7 +63,7 @@ const options = {
   animation: true,
   title: {
     show: true,
-    text: props.data + "%",
+    text: (props.data*1).toFixed(2) + "%",
     x: "center",
     y: "center",
     textStyle: {