element icon indicating copy to clipboard operation
element copied to clipboard

Statistic 统计数值 value传值类型

Open xiegithub opened this issue 4 months ago • 2 comments

Statistic 统计数值 value传值类型为[String, Number, Date]

<el-statistic
  group-separator=","
  :precision="2"
  :value="realValue"
  :value-style="{ 'font-size': '30px' }">
</el-statistic>

如果realValue=12.25,则可以正常显示。如果realValue="12.25",则无法正确显示。 在源码中“if (!isNumber(value)) return false;” lodash的isNumber("123"); // false

xiegithub avatar Oct 08 '25 09:10 xiegithub

没得办法, 传进去之前先转成 number 呗, 反正只是用作展示并不设计修改逻辑 直接:value="+realValue"

Shinhwe avatar Oct 11 '25 03:10 Shinhwe

https://github.com/webvs2/element-ui-ce 可以关注这个社区版本,提交issues后将提供修复

webvs2 avatar Dec 05 '25 09:12 webvs2