小数转化成百分数

toPercent

export function toPercent(value) {
  let str = Number(value * 100).toFixed(2);  // 百分数中的小数位数
  str += '%';
  return str;
}
发布了23 篇原创文章 · 获赞 0 · 访问量 560

猜你喜欢

转载自blog.csdn.net/JIANLI0123/article/details/104497171
今日推荐