修正排序功能,默认以用户设定的排序ID从小到大排序,可增可减,最小为0

This commit is contained in:
ngfchl
2022-12-05 23:56:14 +08:00
parent e63f16b983
commit a2e8425732
4 changed files with 139 additions and 37 deletions

View File

@@ -28,6 +28,5 @@ function numberFormat(value) {
param.value = ((value / Math.pow(k, i))).toFixed(2);
param.unit = sizes[i];
}
console.log(param)
return `${param.value}${param.unit}`;
}