huangbin 4 år sedan
förälder
incheckning
2dfb849920
1 ändrade filer med 3 tillägg och 1 borttagningar
  1. 3 1
      src/common/setup/table/list.ts

+ 3 - 1
src/common/setup/table/list.ts

@@ -28,7 +28,9 @@ export function queryTableList<T>(ishandleFloatErr = false) {
                 if (ishandleFloatErr) {  // 折中方案:处理浮点失真,如果页面卡顿,则需要服务处理
                     result?.forEach((e: T, i: number) => {
                         for (const item in e) {
-                            e[item] = getDecimalsNum(e[item], 6, (e as any).decimalplace)
+                            const decimal = (e as any).decimalplace
+                            const count = decimal ? decimal : 4
+                            e[item] = getDecimalsNum(e[item], count, decimal)
                         }
                     });
                 }