Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Code Block
languagejs
title原型
//小数转为百分比
return (param.value * 100) + "%";
 
//实现千分位
return VSUtils.comdifyValue(param.value);