he wei
2022-11-13 b4816f6294646157b50bb49f1d19eaf306e0ac8c
src/assets/js/util.js
@@ -18,4 +18,9 @@
  return _toString.call(v) === '[object RegExp]'
}
export function toFixed(value, bit) {
  const num = Math.pow(10, bit);
  return Math.round(value * num) / num;
}
const _toString = Object.prototype.toString