公告板
版本库
filestore
活动
搜索
登录
main
/
power-test
公司内部电源前端平台
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
U 提交
he wei
2025-01-13
8ffb54b88e3907ea59c120d34a8cd9f486cc1151
[power-test.git]
/
src
/
assets
/
js
/
toFixed.js
1
2
3
4
5
6
7
8
9
10
/**
* 数值保留指定位数小数
*/
export default function toFixed(value, bit) {
if (!value) {
return 0;
}
const num = Math.pow(10, bit);
return Math.round(value * num) / num;
}