From 8d60ddbc8d20bc2a19d85a1a71aedf4ea3c59b34 Mon Sep 17 00:00:00 2001 From: jl-zhoujl2 Date: Mon, 26 Jun 2023 13:38:55 +0800 Subject: [PATCH] =?UTF-8?q?6.26=20=E8=AF=84=E5=AE=A1=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=9C=80=E9=AB=98=E5=88=86=E7=B2=BE=E5=BA=A6=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Bid/ReviewConfig/Config/components/commonFunc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Bid/ReviewConfig/Config/components/commonFunc.ts b/src/pages/Bid/ReviewConfig/Config/components/commonFunc.ts index 28e15e8..efa8ae3 100644 --- a/src/pages/Bid/ReviewConfig/Config/components/commonFunc.ts +++ b/src/pages/Bid/ReviewConfig/Config/components/commonFunc.ts @@ -17,7 +17,7 @@ export const checkUnEmp = (val: any) => { //计算一个table的最高分 export const subCountScore = (subData: any) => { - const mul = 10 ^ 5; + const mul = 10 ** 5; const sum = subData?.detailList?.reduce((preValue: any, item: any) => { return preValue + item.highScore * mul }, 0); return Math.round(sum) / mul; }