修复:综合浏览系统文件全文检索页面文件大小不显示的bug

master
guoxin 1 year ago
parent 632105fa9e
commit 57c42e70bb
  1. 2
      shandan-browser/src/main/resources/static/js/browser.js

@ -644,7 +644,7 @@ function fileSizeFormat(size, initUnit = 'B') {
const i = units.indexOf(initUnit);
if (size > 1024 && i < units.length - 1) {
return fileSizeFormat(size / 1024, units[i + 1]);
} else if (size < 1 && i > -1) {
} else if (size < 1 && i > 0) {
return fileSizeFormat(size * 1024, units[i - 1]);
} else {
return Math.round(size * 100) / 100 + initUnit;